    /* TOGGLE BUTTONS */
    .view-toggle {
        max-width: 1200px;
        margin: 30px auto 10px;
        display: flex;
        gap: 12px;
        padding: 0 12px;
        justify-content: flex-end;
    }

    .view-toggle button {
        width: 60px;   /* BIGGER */
        height: 60px;  /* BIGGER */
        padding: 0;
        border: none;
        background: transparent;
        border-radius: .1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .view-toggle button svg {
        width: 32px;   /* BIGGER ICON */
        height: 32px;
        fill: #000;
        transition: fill 0.2s;
    }

    .view-toggle button.active svg {
        fill: #875574;
    }

    /* GRID VIEW */
    .card-grid {
        max-width: 1200px;
        margin: 20px auto;
        padding: 0 12px;
        display: none;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* ALTERNATIVE VIEW */
    .card-alt {
        max-width: 1200px;
        margin: 20px auto;
        padding: 0 12px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .alt-card {
        background: #fff;
        border-radius: .1rem;
        box-shadow: 0 4px 14px rgba(0,0,0,0.12);
        overflow: hidden;
        display: flex;
        flex-direction: row;
        transition: transform 0.3s ease;
        height: 380px;
    }

    .alt-card:hover {
        transform: scale(1.02);
    }

    .alt-image {
        flex: 1;
        min-width: 50%;
        max-width: 50%;
        overflow: hidden;
        position: relative;
        display: flex;
    }

    .alt-image img {
        width: 100%;
        height: 140%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        transition: transform 0.1s linear;
    }

    .alt-content {
        flex: 1;
        padding: 28px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .alt-content h3 {
        margin: 0 0 12px;
        font-size: 24px;
        font-weight: 300;
        color: #875574;
        letter-spacing: 0.6px;
    }

    .alt-content p {
        margin: 16px 0 20px;
        color: #555;
        font-size: 16px;
        line-height: 1.5;
        flex: 1;
        text-align: justify;
    }

    .alt-content button {
        padding: 15px 24px;
        border: none;
        background: #875574;
        color: white;
        border-radius: .1rem;
        cursor: pointer;
        align-self: flex-end;
    }

    /* GRID CARD STYLE */
    .card {
        background: #fff;
        border-radius: .1rem;
        box-shadow: 0 4px 14px rgba(0,0,0,0.12);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        min-height: 460px;
        transition: transform 0.3s ease;
    }

    .card:hover {
        transform: scale(1.02);
    }

    .card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
    }

    .card-content {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .card h3 {
        margin: 0 0 10px;
        font-size: 20px;
        font-weight: 300;
        color: #875574;
        letter-spacing: 0.6px;
    }

    .card p {
        margin: 12px 0 24px;
        font-size: 15px;
        color: #555;
        flex: 1;
        text-align: justify;
    }

    .card button {
        padding: 15px 24px;
        border: none;
        background: #875574;
        color: white;
        border-radius: .1rem;
        cursor: pointer;
        align-self: flex-end;
    }

    @media (max-width: 900px) {
        .card-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .alt-card {
            flex-direction: column;
            height: 480px;
        }
        .alt-image {
            max-width: 100%;
            min-width: 100%;
            height: 260px;
        }
        .alt-image img {
            height: 160%;
        }
    }

    @media (max-width: 600px) {
        .card-grid {
            grid-template-columns: 1fr;
        }
        .alt-image {
            height: 220px;
        }
    }