.vocational-education {
    margin-block: 24px;
    
    @media (width > 800px) {
        margin-block: 48px;
    }

    > h2 {
        color: var(--_bg-color);
    }

    .cols {
        display: flex;
        flex-direction: column;
        gap: 32px;

        @media (width > 800px) {
            flex-direction: row;
            align-items: flex-start;
        }

        .photo {
            @media (width > 800px) {
                position: sticky;
                top: 132px;
                width: 370px;
                height: 100%;
            }

            img {
                display: block;
                border-radius: 16px;
                width: 100%;
                /* height: 100%; */
                object-fit: cover;
                transition: all 250ms ease-in-out;

                @media (width <= 800px) {
                    height: 200px;
                }
            }
        }
    }

    .accordion {
        display: flex;
        flex-direction: column;
        flex: 1;

        .title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #0070B8;
            color: #FDFEFF;
            padding: 12px 16px;
            border-radius: 12px 12px 0 0;
            margin-bottom: 0;
            cursor: pointer;
            font-size: 18px;
            gap: 8px;
            margin-top: 0;
            font-weight: 700;

            &:before {
                display: none;
            }
            
            @media (width > 800px) {
                padding-inline: 24px;
                font-size: 24px;
            }

            strong {
                display: flex;
                font-weight: normal;
                gap: 4px;

                @media (width <= 800px) {
                    font-size: 1.6rem;
                    font-weight: 700;
                }
                
                @media (width > 800px) {
                    font-weight: 700;
                    font-size: 20px;
                }
            }

            > span {
                display: flex;
                align-items: center;
                transition: rotate 300ms ease-out;
                rotate: 180deg;
            }

            /* Focus visible WCAG */
            &:focus-visible {
                outline: 2px solid #0D1A22;
                outline-offset: 2px;
            }
        }

        .content {
            margin-bottom: 0;
            border-radius: 0 0 12px 12px;
            padding: 0;
            height: 0;
            overflow: hidden;
            transition: height 0.3s ease, block-size 0.3s ease;
            transition-behavior: allow-discrete;
            
            p:last-child, ul:last-child, li:last-child {
                margin-bottom: 0;
            }
        }

        .title[aria-expanded="true"] {
            border-radius: 12px 12px 0 0 !important;

            + .content {
                padding: 24px;
                height: auto;
                overflow: initial;
                border: 1px solid #E2E2E2;
            }

            > span {
                rotate: 0deg;
            }
        }

        .item:not(.title[aria-expanded="true"]) .title {
            border-radius: 12px;
        }

        .item + .item {
            margin-top: 24px;
        }
    }
}

/* @starting-style {
    .accordion .content {
        height: 0;
    }
} */
