/* Styling for Torso, Limbs, and Cardio pages (90min Split) */

.tlc-section {
    padding: 8rem 0 4rem;
}

.tlc-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tlc-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--title-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tlc-subtitle {
    font-size: 1.1rem;
    color: var(--first-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.back-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
}

/* Info Banner */
.tlc-info-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem 2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.info-group {
    text-align: center;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--title-color);
}

.info-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Grid */
.tlc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Cards */
.tlc-card {
    display: block;
    text-decoration: none;
    background: var(--container-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tlc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--first-color);
}

.tlc-card--coming-soon {
    cursor: default;
}

.tlc-card--coming-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.05);
}

.tlc-media {
    width: 100%;
    height: 220px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tlc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tlc-card:hover .tlc-media img {
    transform: scale(1.05);
}

.tlc-content {
    padding: 1.5rem;
    text-align: center;
}

.tlc-name {
    font-size: 1.25rem;
    color: var(--title-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.tlc-card--coming-soon .tlc-name::after {
    content: "Coming soon";
    display: block;
    width: fit-content;
    margin: 0.7rem auto 0;
    padding: 0.3rem 0.55rem;
    border: 1px solid var(--first-color);
    border-radius: 999px;
    color: var(--first-color-light);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tlc-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tlc-details li {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    position: relative;
}

.tlc-details li:first-child {
    color: var(--first-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media screen and (max-width: 576px) {
    .tlc-section {
        padding-top: 6rem;
    }
    .tlc-title {
        font-size: 1.75rem;
    }
    .tlc-info-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    .info-divider {
        width: 100%;
        height: 1px;
    }
}

/* Outdoor page premium overrides */
.tlc-section--outdoor{
    position: relative;
}

.tlc-section--outdoor::before{
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 24rem;
    background:
        radial-gradient(circle at top center, rgba(79,170,80,0.16), transparent 55%);
    pointer-events: none;
}

.tlc-section--outdoor .container{
    position: relative;
    z-index: 1;
}

.tlc-section--outdoor .tlc-header{
    max-width: 820px;
    margin: 0 auto 2.25rem;
}

.tlc-section--outdoor .tlc-eyebrow{
    margin-bottom: .75rem;
    color: var(--first-color);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .18rem;
    text-transform: uppercase;
}

.tlc-section--outdoor .tlc-title{
    font-family: var(--second-font);
    letter-spacing: .5px;
    margin-bottom: .65rem;
    line-height: 1.05;
}

.tlc-section--outdoor .tlc-subtitle{
    color: var(--title-color);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: .8rem;
}

.tlc-section--outdoor .tlc-description{
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: var(--text-color);
    line-height: 1.75;
    font-size: 1rem;
}

.tlc-section--outdoor .back-btn{
    border-radius: 999px;
    padding-inline: 1.7rem;
    box-shadow: 0 12px 30px rgba(79,170,80,0.18);
}

.tlc-section--outdoor .tlc-info-banner{
    max-width: 760px;
    border-radius: 20px;
    padding: 1.15rem 2rem;
    background:
        linear-gradient(180deg, rgba(79,170,80,0.10), rgba(255,255,255,0.02)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-color: rgba(124,190,97,0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.tlc-section--outdoor .info-group{
    min-width: 120px;
}

.tlc-section--outdoor .info-label{
    letter-spacing: .08rem;
}

.tlc-section--outdoor .info-value{
    font-size: 1.15rem;
}

.tlc-section--outdoor .info-divider{
    background: linear-gradient(180deg, transparent, rgba(124,190,97,0.32), transparent);
}

.tlc-section--outdoor .tlc-note{
    max-width: 760px;
    margin: -1.5rem auto 2.5rem;
    text-align: center;
    color: var(--text-color);
    line-height: 1.7;
}

.tlc-section--outdoor .tlc-grid{
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.tlc-section--outdoor .tlc-card{
    display: block;
    text-decoration: none;
    background:
        linear-gradient(180deg, rgba(79,170,80,0.08), rgba(255,255,255,0.015) 35%, rgba(255,255,255,0.01));
    border-radius: 20px;
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    position: relative;
}

.tlc-section--outdoor .tlc-card:hover{
    transform: translateY(-7px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
    border-color: rgba(124,190,97,0.26);
}

.tlc-section--outdoor .tlc-card:focus{
    outline: 3px solid rgba(124,190,97,0.22);
    outline-offset: 3px;
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.tlc-section--outdoor .tlc-media{
    height: 176px;
    background:
        linear-gradient(180deg, rgba(79,170,80,0.10), rgba(0,0,0,0.08));
    position: relative;
}

.tlc-section--outdoor .tlc-media::after{
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(6, 10, 8, 0.28));
    pointer-events: none;
}

.tlc-section--outdoor .tlc-content{
    padding: 1.25rem;
    text-align: left;
}

.tlc-section--outdoor .tlc-topline{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .95rem;
}

.tlc-section--outdoor .tlc-index{
    color: var(--first-color);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .14rem;
}

.tlc-section--outdoor .tlc-chip{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: rgba(79,170,80,0.12);
    border: 1px solid rgba(124,190,97,0.14);
    color: var(--title-color);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04rem;
    white-space: nowrap;
}

.tlc-section--outdoor .tlc-name{
    margin-bottom: .85rem;
    font-size: 1.15rem;
    line-height: 1.2;
}

.tlc-section--outdoor .tlc-details li{
    line-height: 1.55;
}

.tlc-section--outdoor .tlc-details li:first-child{
    color: var(--first-color);
}

.tlc-section--outdoor .tlc-linkhint{
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--title-color);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .04rem;
    opacity: .84;
    transition: transform .2s ease, opacity .2s ease, color .2s ease;
}

.tlc-section--outdoor .tlc-linkhint i{
    font-size: 1rem;
    transition: transform .2s ease;
}

.tlc-section--outdoor .tlc-card:hover .tlc-linkhint,
.tlc-section--outdoor .tlc-card:focus .tlc-linkhint{
    opacity: 1;
    color: var(--first-color-light);
    transform: translateX(2px);
}

.tlc-section--outdoor .tlc-card:hover .tlc-linkhint i,
.tlc-section--outdoor .tlc-card:focus .tlc-linkhint i{
    transform: translateX(4px);
}

@media screen and (max-width: 576px) {
    .tlc-section--outdoor .tlc-info-banner{
        padding: 1.25rem;
    }

    .tlc-section--outdoor .tlc-note{
        margin-top: -1rem;
    }

    .tlc-section--outdoor .tlc-media{
        height: 200px;
    }
}
