.isolated-content-section {
    /* --bg-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80'); */
    --overlay-color: rgba(255, 255, 255, 0.85);
    --block-height: 100px;
    --block-radius: 5px;
    --block-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --glossy-overlay-width: 40%;
    --glossy-overlay-angle: 20%;
    --title-size: 1.5rem;
    --desc-size: 0.9rem;
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.isolated-content-section {
    background: var(--bg-image) no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    isolation: isolate;
}

.isolated-content-section .content-overlay {
    background-color: var(--overlay-color);
    min-height: 100vh;
    padding: 30px 0;
    width: 100%;
}

.isolated-content-section .content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.isolated-content-section .glossy-link {
    display: block;
    height: var(--block-height);
    background-size: cover;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border-radius: var(--block-radius);
    box-shadow: var(--block-shadow);
    text-decoration: none !important;
    color: inherit;
}

.isolated-content-section .glossy-overlay {
    position: absolute;
    right: 0;
    top: 0;
    width: var(--glossy-overlay-width);
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    transition: all 0.3s ease;
    clip-path: polygon(var(--glossy-overlay-angle) 0%, 100% 0%, 100% 100%, 0% 100%);
}

.isolated-content-section .glossy-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0) 60%);
    transform: rotate(30deg);
    pointer-events: none;
    transition: all 0.3s ease;
}

.isolated-content-section .glossy-link:hover .glossy-overlay {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.isolated-content-section .block-title {
    color: white;
    font-size: var(--title-size);
    font-weight: bold;
    margin-bottom: 5px;
    text-align: right;
    text-shadow: var(--text-shadow);
    position: relative;
}

.isolated-content-section .block-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--desc-size);
    text-align: right;
    text-shadow: var(--text-shadow);
    position: relative;
}

@media (max-width: 768px) {
    .isolated-content-section {
        --glossy-overlay-width: 60%;
        --glossy-overlay-angle: 10%;
        --title-size: 1.2rem;
        --desc-size: 0.8rem;
    }
}