.single-workout {
    padding: 48px 20px 80px;
    background: #f7f7f7;
}

.single-workout .container {
    max-width: 1100px;
    margin: 0 auto;
}

.single-workout__article {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.single-workout__header {
    margin-bottom: 36px;
}

.single-workout__terms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.single-workout__term {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f2f2f2;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.single-workout__term:hover {
    background: #222;
    color: #fff;
}

.single-workout__title {
    margin: 0 0 24px;
    font-size: 42px;
    line-height: 1.1;
}

.single-workout__thumb {
    margin-bottom: 24px;
}

.single-workout__thumb img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.single-workout__intro {
    color: #444;
    line-height: 1.7;
}

.single-workout__exercises {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.exercise-detail {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 20px;
    overflow: hidden;
}

.exercise-detail__content {
    padding: 24px;
}

.exercise-detail__title {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.2;
}

.exercise-detail__meta {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.exercise-detail__meta-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e8e8;
}

.exercise-detail__meta-item .label {
    font-weight: 700;
    color: #222;
}

.exercise-detail__meta-item .value {
    color: #555;
    text-align: right;
}

.exercise-detail__extra {
    color: #444;
    line-height: 1.7;
}

.single-workout__empty {
    padding: 16px;
    border-radius: 12px;
    background: #f3f3f3;
}

/* Vimeo lazy */
.exercise-detail__video {
    padding: 24px 24px 0;
}

.exercise-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
.exercise-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0)),
        linear-gradient(180deg, #1a1a1a, #0d0d0d);
}
*/

.exercise-video__play {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, background .2s ease;
}

.exercise-video__play:hover {
    transform: scale(1.06);
    background: #fff;
}

.exercise-video__play-icon {
    font-size: 28px;
    line-height: 1;
    margin-left: 4px;
}

.exercise-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .single-workout__article {
        padding: 22px;
    }

    .single-workout__title {
        font-size: 32px;
    }

    .exercise-detail__title {
        font-size: 22px;
    }

    .exercise-detail__meta-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .exercise-detail__meta-item .value {
        text-align: left;
    }

    .exercise-detail__video {
        padding: 20px 20px 0;
    }
}
.workout-taxonomy {
    padding: 48px 20px 70px;
    background: #f7f7f7;
}

.workout-taxonomy .container {
    max-width: 1200px;
    margin: 0 auto;
}

.workout-taxonomy__header {
    margin-bottom: 40px;
    text-align: center;
}

.workout-taxonomy__header h1 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.1;
}

.workout-taxonomy__description {
    max-width: 780px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

.workout-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.workout-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.workout-card__title {
    margin: 0 0 20px;
    font-size: 30px;
    line-height: 1.2;
}

.workout-card__thumb {
    margin-bottom: 24px;
}

.workout-card__thumb img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.exercise-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.exercise-card {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.exercise-card__video iframe,
.exercise-card__video video,
.exercise-card__video embed {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.exercise-card__content {
    padding: 20px;
}

.exercise-card__title {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.2;
}

.exercise-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.exercise-meta__item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e8e8;
}

.exercise-meta__item .label {
    font-weight: 700;
    color: #222;
}

.exercise-meta__item .value {
    text-align: right;
    color: #555;
}

.exercise-card__extra {
    color: #444;
    line-height: 1.7;
}

.workout-card__empty {
    padding: 16px;
    border-radius: 12px;
    background: #f3f3f3;
}

.pagination-wrap {
    margin-top: 36px;
}

@media (max-width: 900px) {
    .exercise-grid {
        grid-template-columns: 1fr;
    }

    .workout-taxonomy__header h1 {
        font-size: 32px;
    }

    .workout-card__title {
        font-size: 24px;
    }

    .exercise-card__title {
        font-size: 20px;
    }

    .exercise-meta__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .exercise-meta__item .value {
        text-align: left;
    }
}
.single-workout {
    padding: 48px 20px 80px;
    background: #f7f7f7;
}

.single-workout .container {
    max-width: 1280px;
    margin: 0 auto;
}

.single-workout__article {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.single-workout__header {
    margin-bottom: 36px;
}

.single-workout__terms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.single-workout__term {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f2f2f2;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.single-workout__term:hover {
    background: #222;
    color: #fff;
}

.single-workout__title {
    margin: 0 0 24px;
    font-size: 42px;
    line-height: 1.1;
}

.single-workout__thumb {
    margin-bottom: 24px;
}

.single-workout__thumb img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.single-workout__intro {
    color: #444;
    line-height: 1.7;
}

.single-workout__sections {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.workout-section {
    padding-top: 8px;
}

.workout-section__header {
    margin-bottom: 18px;
}

.workout-section__title {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.15;
}

.workout-section__text {
    color: #555;
    line-height: 1.7;
    max-width: 900px;
}

.workout-variations {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.workout-variations::-webkit-scrollbar {
    height: 10px;
}

.workout-variations::-webkit-scrollbar-track {
    background: #ececec;
    border-radius: 999px;
}

.workout-variations::-webkit-scrollbar-thumb {
    background: #c8c8c8;
    border-radius: 999px;
}

.variation-card {
    flex: 0 0 360px;
    max-width: 360px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
}

.variation-card__video {
    padding: 20px 20px 0;
}

.variation-card__content {
    padding: 20px;
}

.variation-card__title {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.2;
}

.variation-card__meta {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.variation-card__meta-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e8e8;
}

.variation-card__meta-item .label {
    font-weight: 700;
    color: #222;
}

.variation-card__meta-item .value {
    color: #555;
    text-align: right;
}

.variation-card__extra {
    color: #444;
    line-height: 1.7;
}

.single-workout__empty {
    padding: 16px;
    border-radius: 12px;
    background: #f3f3f3;
}

.exercise-video {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
}

.exercise-video iframe,
.exercise-video video,
.exercise-video embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.exercise-video--fallback iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 900px) {
    .single-workout__article {
        padding: 22px;
    }

    .single-workout__title {
        font-size: 32px;
    }

    .workout-section__title {
        font-size: 24px;
    }

    .variation-card {
        flex: 0 0 84%;
        max-width: 84%;
    }

    .variation-card__title {
        font-size: 20px;
    }

    .variation-card__meta-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .variation-card__meta-item .value {
        text-align: left;
    }
}
.comments-area a,
.page-content a {
    text-decoration: underline
}

.alignright {
    float: right;
    margin-left: 1rem
}

.alignleft {
    float: left;
    margin-right: 1rem
}

.aligncenter {
    clear: both;
    display: block;
    margin-inline: auto
}

.alignwide {
    margin-inline: -80px
}

.alignfull {
    margin-inline: calc(50% - 50vw);
    max-width: 100vw
}

.alignfull,
.alignfull img {
    width: 100vw
}

.wp-caption {
    margin-block-end: 1.25rem;
    max-width: 100%
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px
}

.wp-caption img {
    display: block;
    margin-inline: auto
}

.wp-caption-text {
    margin: 0
}

.gallery-caption {
    display: block;
    font-size: .8125rem;
    line-height: 1.5;
    margin: 0;
    padding: .75rem
}

.pagination {
    display: flex;
    justify-content: space-between;
    margin: 20px auto
}

.sticky {
    display: block;
    position: relative
}

.bypostauthor {
    font-size: inherit
}

.hide {
    display: none!important
}

.post-password-form {
    margin: 50px auto;
    max-width: 500px
}

.post-password-form p {
    align-items: flex-end;
    display: flex;
    width: 100%
}

.post-password-form [type=submit] {
    margin-inline-start: 3px
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important
}

.screen-reader-text:focus {
    background-color: #eee;
    clip: auto!important;
    clip-path: none;
    color: #333;
    display: block;
    font-size: 1rem;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 12px 24px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}

.post .entry-title a {
    text-decoration: none
}

.post .wp-post-image {
    max-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

@media(max-width:991px) {
    .post .wp-post-image {
        max-height: 400px
    }
}

@media(max-width:575px) {
    .post .wp-post-image {
        max-height: 300px
    }
}

#comments .comment-list {
    font-size: .9em;
    list-style: none;
    margin: 0;
    padding: 0
}

#comments .comment,
#comments .pingback {
    position: relative
}

#comments .comment .comment-body,
#comments .pingback .comment-body {
    border-block-end: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    padding-block-end: 30px;
    padding-block-start: 30px;
    padding-inline-end: 0;
    padding-inline-start: 60px
}

#comments .comment .avatar,
#comments .pingback .avatar {
    border-radius: 50%;
    left: 0;
    margin-inline-end: 10px;
    position: absolute
}

body.rtl #comments .comment .avatar,
body.rtl #comments .pingback .avatar,
html[dir=rtl] #comments .comment .avatar,
html[dir=rtl] #comments .pingback .avatar {
    left: auto;
    right: 0
}

#comments .comment-meta {
    display: flex;
    justify-content: space-between;
    margin-block-end: .9rem
}

#comments .comment-metadata,
#comments .reply {
    font-size: 11px;
    line-height: 1
}

#comments .children {
    list-style: none;
    margin: 0;
    padding-inline-start: 30px;
    position: relative
}

#comments .children li:last-child {
    padding-block-end: 0
}

#comments ol.comment-list .children:before {
    content: "↪";
    display: inline-block;
    font-size: 1em;
    font-weight: 400;
    left: 0;
    line-height: 100%;
    position: absolute;
    top: 45px;
    width: auto
}

body.rtl #comments ol.comment-list .children:before,
html[dir=rtl] #comments ol.comment-list .children:before {
    content: "↩";
    left: auto;
    right: 0
}

@media(min-width:768px) {
    #comments .comment-author,
    #comments .comment-metadata {
        line-height: 1
    }
}

@media(max-width:767px) {
    #comments .comment .comment-body {
        padding: 30px 0
    }
    #comments .children {
        padding-inline-start: 20px
    }
    #comments .comment .avatar {
        float: left;
        position: inherit
    }
    body.rtl #comments .comment .avatar,
    html[dir=rtl] #comments .comment .avatar {
        float: right
    }
}

.page-header .entry-title,
.site-footer .footer-inner,
.site-footer:not(.dynamic-footer),
.site-header .header-inner,
.site-header:not(.dynamic-header),
body:not([class*=elementor-page-]) .site-main {
    margin-inline-end: auto;
    margin-inline-start: auto;
    width: 100%
}

@media(max-width:575px) {
    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    body:not([class*=elementor-page-]) .site-main {
        padding-inline-end: 10px;
        padding-inline-start: 10px
    }
}

@media(min-width:576px) {
    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    body:not([class*=elementor-page-]) .site-main {
        max-width: 500px
    }
    .site-footer.footer-full-width .footer-inner,
    .site-header.header-full-width .header-inner {
        max-width: 100%
    }
}

@media(min-width:768px) {
    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    body:not([class*=elementor-page-]) .site-main {
        max-width: 600px
    }
    .site-footer.footer-full-width,
    .site-header.header-full-width {
        max-width: 100%
    }
}

@media(min-width:992px) {
    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    body:not([class*=elementor-page-]) .site-main {
        max-width: 800px
    }
    .site-footer.footer-full-width,
    .site-header.header-full-width {
        max-width: 100%
    }
}

@media(min-width:1200px) {
    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    body:not([class*=elementor-page-]) .site-main {
        max-width: 1140px
    }
    .site-footer.footer-full-width,
    .site-header.header-full-width {
        max-width: 100%
    }
}

.site-header+.elementor {
    min-height: calc(100vh - 320px)
}