:root {
    --primary-color: #000;
    --secondary-color: #666;
    --background-light: #f8f8f8;
    --background-white: #fff;
    --border-radius-sm: 5px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 20px;
    --spacing-xl: 24px;
    --font-family-base: 'sst-roman', sans-serif;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition-default: all 0.2s ease;
}

.text-center {
    text-align: center;
}

.article-header {
    padding: 0 0 20px 0;

}

.article-alpha-logo {
    width: 20%;
    margin: 0 auto;
}

.article-alpha-logo img {
    width: 100%;
    height: auto;
}

.article-category {
    width: 20%;
    margin: 20px auto;
}

.article-category-title {
    font-size: 1.5rem;
    line-height: 1.3;
    font-family: 'sst-medium', sans-serif;
}

.article-category-title {
    display: flex;
    flex-direction: row;
}

.article-category-title:before,
.article-category-title:after {
    content: "";
    flex: 1 1;
    border-bottom: 1.2px solid;
    margin: auto;
}

.article-category-title:before {
    margin-right: 10px
}

.article-category-title:after {
    margin-left: 10px
}

.article-title {
    margin: 20px 0;
}

.article-title-text {
    font-size: 2.5rem;
    line-height: 1.3;
    font-family: 'sst-roman', sans-serif;
    font-weight: normal;
    margin: 0 auto;
    margin-bottom: 6px;
    max-width: 80%;
}

.article-title-author {
    font-size: 1rem;
    line-height: 1.3;
    font-family: 'sst-roman', sans-serif;
    margin-bottom: 6px;
}

.article-banner-desktop {
    display: block;
    width: 100%;
    height: 599px;
    object-fit: cover;
}

.article-banner-mobile {
    display: none;
    /* Mobile */
    width: 100%;
    height: auto;
}

.article-banner {
    position: relative;
}

.article-banner-genre-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0);
    color: white;
    padding: 4px 12px;
}

.article-banner-genre-badge-text {
    font-size: 1.125rem;
    line-height: 1.3;
    font-family: 'sst-heavy', sans-serif;
}

.article-banner-author {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
}

.author-image {
    width: 125px;
}

.author-image img {
    width: 100%;
    height: auto;
    border-radius: 65px;
}

.author-info {
    margin-left: 20px;
}

.author-name {
    text-align: left;
}

.author-name-text {
    margin-bottom: 10px;
}

.author-info-social a {
    text-decoration: none;
}

.author-info-social a img {
    width: 36px;
}


.article-content {
    margin: 30px 0;
}

.article-content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.article-content-text-block {
    width: 800px;
    margin: 0 auto;
}

.article-content-container h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-family: 'sst-medium', sans-serif;
    font-weight: normal;
    margin: 20px 0;
}

.article-content-container h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    font-family: 'sst-medium', sans-serif;
    font-weight: normal;
    margin: 20px 0;
}

.article-content-container p {
    font-size: 1.125rem;
    line-height: 1.3;
    font-family: 'sst-roman', sans-serif;
    margin-bottom: 12px;
}

.article-content-container .article-content-image {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 20px auto;
}

.article-content-container .article-content-image img {
    width: 100%;
    height: auto;
}

.article-content-container .article-content-image-description {
    margin: 10px auto;
}

.article-content-container .article-content-image-description p {
    font-size: 0.875rem;
    line-height: 1.3;
    font-family: 'sst-roman', sans-serif;
    margin-bottom: 6px;
    text-align: center;
    color: #666;
}

.article-content-container .article-content-list {
    font-size: 1.125rem;
    padding: 0;
    padding-left: 1.125rem !important;
    margin: 12px 0;
}

.article-content-container .article-content-list li {
    font-size: 1.125rem;
    line-height: 1.3;
    font-family: 'sst-roman', sans-serif;
    margin-bottom: 6px;
}

.article-content-container .article-content-video {
    padding: 20px 0 0 0;
}

.article-content-container .article-content-video-block {
    width: 1000px;
    margin: 20px auto;
}

.article-content-container .article-content-video-block iframe {
    width: 100%;
    height: auto;
}

.article-content-container .article-content-video-block.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.article-content-container .article-content-video-block.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-content-quotes {
    margin: 20px 0;
    position: relative;
    padding: 50px 0;
    width: 800px;
    margin: 0 auto;
}

.article-content-quotes:before,
.article-content-quotes:after {
    position: absolute;
    font-size: 2rem;
    color: black;
    font-weight: normal;
    font-family: 'sst-roman', sans-serif;
}

.article-content-quotes:before {
    content: '\201c';
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.article-content-quotes:after {
    content: '\201d';
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

.article-content-quotes p {
    margin: 0;
    font-size: 2rem;
    line-height: 1.3;
    font-family: 'sst-roman', sans-serif;
    font-weight: normal;
    text-align: center;
}

.article-content-gear {
    margin: 20px 0;
    width: 800px;
    margin: 50px auto;
}

.article-content-gear-title {
    font-size: 1.5rem;
    line-height: 1.3;
    font-family: 'sst-medium', sans-serif;
    font-weight: normal;
    padding: 20px 0;
}

.article-content-gear-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.article-content-gear-block {
    width: 100%;
    max-width: 30%;
}

.article-content-gear-block a {
    text-decoration: none;
}

.article-content-gear-block .article-content-gear-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background-color: #fff;
    border: 1px solid #efedec;
}

.article-content-gear-read-more {
    width: 10px;
    height: 10px;
}

.article-content-gear-info {}

.article-content-gear-model,
.article-content-gear-description {
    line-height: 1.3;
    font-family: 'sst-roman', sans-serif;
    font-weight: normal;
    color: black;
}

.article-content-gear-model {
    font-family: 'sst-medium', sans-serif !important;
    font-size: 1rem !important;
    margin-bottom: 6px !important;
}

.article-content-gear-description {
    font-size: 0.875rem !important;
}

.article-content-tag {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.article-content-tag-block button {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.125rem;
    line-height: 1.3;
    font-family: 'sst-roman', sans-serif;
    font-weight: normal;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .article-banner-desktop {
        height: auto;
    }

    .article-alpha-logo {
        width: 60%;
    }

    .article-category {
        width: 50%;
    }

    .article-title-text {
        font-size: 1.5rem;
        line-height: 1.2;
        padding: 0 20px;
    }

    .article-title-author {
        font-size: 1rem;
        line-height: 1.2;
        padding: 0 20px;
    }

    .author-image {
        width: 110px;
    }

    .article-content-text-block {
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    .article-content-image-block {
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    .article-content-container p {
        font-size: 0.875rem;
        line-height: 1.3;
    }

    .tCol-image {
        flex-direction: column !important;
    }

    .article-content-container .article-content-video {
        padding: 5px 20px;
    }

    .article-content-container .article-content-video-block {
        width: 100%;
        margin: 20px auto;
    }

    .article-content-quotes {
        width: 100%;
        margin: 0 auto;
        padding: 35px 20px;
        padding-top: 15px;
    }

    .article-content-quotes p {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .article-content-quotes:before {
        top: -7px;
    }

    .article-content-quotes:after {
        bottom: -5px;
    }

    .article-content-gear {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }

    .article-content-gear-title {
        padding: 0 20px;
    }

    .article-content-gear-container {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 0 20px;
        scroll-padding: 0 20px;
        scroll-behavior: smooth;
        touch-action: pan-x;
        overscroll-behavior-x: contain;
        flex-wrap: unset;
    }

    .article-content-gear-block {
        scroll-snap-align: start;
        min-width: 260px;
        user-select: none;
        -webkit-user-select: none;
    }

    .article-content-gear-block .article-content-gear-image {
        height: 180px;
        pointer-events: none;
    }

    /* Hide scrollbar but keep functionality */
    .article-content-gear-container {
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
    }

    .article-content-gear-container::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }
}



/*Overwrite */

.author-name-text {
    font-size: 1.5rem;
    font-family: 'sst-roman', sans-serif;
    margin-bottom: 0px !important;
    font-weight: bold;
}

.instructor-name-title {
    font-size: 0.875rem;
    font-family: 'sst-roman', sans-serif;
    margin-bottom: 12px;
    color: #FF6B00 !important;
}

.author-info-social {
    text-align: left;
}

/* Instructor Courses & Highlights Section */
.instructor-courses,
.instructor-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 0;
}

.course-card {
    text-decoration: none;
    color: inherit;
    background: var(--background-white);
    overflow: hidden;
    transition: var(--transition-default);
    box-shadow: var(--box-shadow);
    position: relative;
    display: flex;
    flex-direction: column;
}

.image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #FF6B00;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 10;
    text-transform: uppercase;
    font-family: 'sst-heavy', sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-info {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-info h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    font-family: 'sst-medium', sans-serif;
}

.course-description-text {
    margin-bottom: 12px;
    margin-top: 8px;
    color: var(--secondary-color);
    font-size: 0.875rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 8px;
    font-size: 0.875rem;
    color: var(--secondary-color);
    font-family: 'sst-medium', sans-serif;
    margin-top: auto;
}

.course-meta .stat-item:last-child {
    width: 100%;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
}

.stat-item svg {
    stroke: #666;
}

.stat-item.stat-rating svg {
    stroke: none;
}

.progress-bars {
    display: flex;
    gap: 3px;
    align-items: center;
    margin-left: 8px;
}

.progress-bar {
    width: 6px;
    height: 12px;
    background: #dbdbdb;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.progress-bar.filled {
    background: #FF6B00;
}

.section-divider {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 32px auto;
    width: 800px;
}

.visit-text {
    text-decoration: none;
}

@media screen and (max-width: 768px) {

    .instructor-courses,
    .instructor-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-info h3 {
        font-size: 0.875rem;
    }

    .course-meta {
        font-size: 13px;
        gap: 16px;
        flex-wrap: nowrap
    }

    .section-divider {
        width: calc(100% - 40px);
    }

    .article-content {
        margin: 0;
    }
    .course-meta {
        flex-wrap: wrap !important;
    }
}

@media screen and (max-width: 480px) {

    .instructor-courses,
    .instructor-highlights {
        grid-template-columns: 1fr;
        padding: 5px 0;
    }

    .author-info {
        width: 50%;
    }

    .instructor-courses,
    .instructor-highlights {
        gap: 20px;
    }
}