* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Make the main page content consume leftover height so the footer can sit at the bottom */
.homepage-container,
.article-container {
    flex: 1 0 auto;
}

/* Top header (social links) */
.top-header {
    position: sticky;
    top: 0;
    z-index: 900; /* keep below language selector (1000) */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin: -20px -20px 20px; /* extend to page edges despite body padding */
}

.top-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 10px;
    transition: background 0.15s ease;
}

.brand:hover {
    background: rgba(0, 0, 0, 0.04);
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #111 0%, #444 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    flex: 0 0 auto;
}

.brand-name {
    font-size: 1rem;
}

.primary-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.primary-nav-link {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.primary-nav-link:hover {
    background: #f5f5f5;
    border-color: rgba(0, 0, 0, 0.18);
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
}

.social-link:hover {
    background: #f5f5f5;
    border-color: rgba(0, 0, 0, 0.18);
}

.social-link:active {
    transform: translateY(1px);
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #ddd;
}

.lang-btn {
    padding: 7px 13px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.67rem;
    font-weight: 500;
    color: #666;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.lang-btn.active {
    background: #333;
    color: #fff;
}

.lang-btn:first-child {
    border-right: 1px solid #ddd;
}

.lang-btn.active:first-child {
    border-right-color: #333;
}

/* Footer */
.site-footer {
    margin: auto -20px -20px; /* push to bottom when page is short; extend to page edges despite body padding */
    background: #0f0f10;
    color: rgba(255, 255, 255, 0.86);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.footer-brand .brand-mark {
    width: 26px;
    height: 26px;
    border-radius: 8px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-social-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

.footer-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.footer-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.03);
    width: fit-content;
}

.footer-icon-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-email-link {
    justify-content: flex-start;
}

.footer-link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    width: fit-content;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.68);
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer-sep {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .site-footer-inner {
        grid-template-columns: 1fr;
    }
}

/* Hide elements based on language */
[data-lang-en],
[data-lang-tr] {
    display: none;
}

html[lang="en"] [data-lang-en] {
    display: inline;
}

html[lang="tr"] [data-lang-tr] {
    display: inline;
}

/* For block-level elements */
p[data-lang-en],
p[data-lang-tr],
li[data-lang-en],
li[data-lang-tr],
div[data-lang-en],
div[data-lang-tr] {
    display: none;
}

html[lang="en"] p[data-lang-en],
html[lang="en"] li[data-lang-en],
html[lang="en"] div[data-lang-en] {
    display: block;
}

html[lang="tr"] p[data-lang-tr],
html[lang="tr"] li[data-lang-tr],
html[lang="tr"] div[data-lang-tr] {
    display: block;
}

html[lang="en"] li[data-lang-en] {
    display: list-item;
}

html[lang="tr"] li[data-lang-tr] {
    display: list-item;
}

/* Handle span visibility in buttons */
button [data-lang-en],
button [data-lang-tr] {
    display: none;
}

html[lang="en"] button [data-lang-en] {
    display: inline;
}

html[lang="tr"] button [data-lang-tr] {
    display: inline;
}

/* Handle strong elements with language attributes */
strong[data-lang-en],
strong[data-lang-tr] {
    display: none;
}

html[lang="en"] strong[data-lang-en] {
    display: inline;
}

html[lang="tr"] strong[data-lang-tr] {
    display: inline;
}

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

.available-data-section {
    width: 100%;
    margin-top: 60px;
}

.available-data-section .intro-text {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.introduction-section {
    width: 100%;
    margin-top: 60px;
}

.introduction-section .intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}

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

.intro-text p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.video-grid-container {
    display: grid;
    grid-template-columns: auto repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
    align-items: start;
}

.grid-spacer {
    grid-row: 1;
    grid-column: 1;
}

.column-label {
    grid-row: 1;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-label:nth-child(2) {
    grid-column: 2;
}

.column-label:nth-child(3) {
    grid-column: 3;
}

.column-label:nth-child(4) {
    grid-column: 4;
}

.row-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.original-label {
    grid-row: 2;
    grid-column: 1;
    align-self: start;
}

.corrected-label {
    grid-row: 3;
    grid-column: 1;
    align-self: start;
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    position: relative;
}

.video-placeholder .source-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
}

.video-placeholder.empty {
    background-color: #fafafa;
    border-style: dashed;
    border-color: #ccc;
}

.video-placeholder.empty::after {
    content: '';
}


.video-container {
    aspect-ratio: 16 / 9;
    min-height: 150px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #000;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Play button overlay for lazy-loaded videos */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease;
}

.video-play-overlay:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.video-play-overlay.hidden {
    display: none;
}

.video-play-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-play-overlay:hover .video-play-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 1);
}

.video-play-icon svg {
    width: 28px;
    height: 28px;
    fill: #333;
    margin-left: 3px; /* Slight offset to center the triangle visually */
}

.video-play-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
}

.grid-note {
    margin-top: 20px;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    text-align: center;
}

.grid-note p {
    margin: 0;
}

/* Reconstruction Section */
.reconstruction-section {
    width: 100%;
    margin-top: 60px;
}

.reconstruction-text {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.reconstruction-text p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.scale-calibration-subsection {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 40px;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.scale-calibration-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.scale-calibration-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1em;
}

.scale-calibration-text p:last-child {
    margin-bottom: 0;
}

/* Analysis Section */
.analysis-section {
    width: 100%;
    margin-top: 60px;
}

.analysis-subsections {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.analysis-subsection {
    width: 100%;
}

.analysis-subsection .subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
    color: #000;
}

.subsection-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.subsection-content p {
    margin-bottom: 1em;
}

.subsection-content p + ul,
.subsection-content p + ol {
    margin-top: -0.5em;
    margin-bottom: 1em;
}

.subsection-content ul + p,
.subsection-content ol + p {
    margin-top: 1em;
}

.reconstruction-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.comparison-slider-container {
    width: 70%;
    max-width: 800px;
}

.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 300px;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #000;
    cursor: ew-resize;
    user-select: none;
}

.comparison-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
}

.comparison-image img,
.comparison-image video {
    position: absolute;
    width: 120%;
    height: 120%;
    left: -15%;
    top: -10%;
    object-fit: cover;
    display: block;
}

.comparison-image-before {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.comparison-image-after {
    z-index: 1;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: #fff;
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.slider-handle-circle {
    position: absolute;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid #000;
    cursor: grab;
}

.slider-handle-circle:active {
    cursor: grabbing;
}

.slider-handle-circle svg {
    width: 20px;
    height: 20px;
    color: #000;
}

.slider-label {
    position: absolute;
    top: 10px;
    padding: 6px 12px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 4;
    border-radius: 4px;
    pointer-events: none;
}

.slider-label-left {
    left: 10px;
}

.slider-label-right {
    right: 10px;
}

.small-placeholders {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 24px;
    width: 90%;
    max-width: 1100px;
}

.small-placeholders .comparison-slider-container {
    width: 100%;
}

.small-placeholder {
    flex: 1;
    aspect-ratio: 16 / 9;
    min-height: 150px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.small-placeholder .placeholder-text {
    font-size: 1rem;
    color: #000;
    text-align: center;
}

.schematic-section {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.schematic-text {
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: left;
}

.schematic-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1em;
}

.schematic-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.schematic-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid #000;
}

/* Environment Section Images */
.environment-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.environment-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.environment-image-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    min-height: 300px;
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder .placeholder-label {
    font-size: 1rem;
    color: #666;
    text-align: center;
    padding: 20px;
}

.image-caption {
    font-size: 0.95rem;
    color: #444;
    text-align: center;
    margin-top: 10px;
}

.environment-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 25px;
}

.environment-figure img {
    max-width: 100%;
    height: auto;
    border: 1px solid #000;
    border-radius: 4px;
}

.environment-row .environment-image-container {
    flex: 1 1 0;
    min-width: 420px;
}

.placeholder-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

/* The Stop Section Images */
.stop-section-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.stop-image-block {
    width: 100%;
    display: flex;
    justify-content: center;
}

.stop-image-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    width: 100%;
}

.stop-image-large {
    max-width: 900px;
    min-height: 320px;
}

.stop-image-large:has(#stop-video-aerial) {
    max-width: 1080px; /* 20% wider than 900px */
}

.stop-image-large:has(#stop-video-aerial) .stop-video-block {
    max-width: 624px; /* 20% wider than 520px */
}

.stop-image-medium {
    min-height: 220px;
}

.stop-video-block {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.stop-video-block {
    position: relative;
}

.stop-video-block video {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    background: #000;
}

.pov-videos-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
}

.zehra-aerial-videos-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
}

.pov-video-block.zehra-aerial-pip {
    align-items: stretch;
}

.zehra-aerial-pip {
    position: relative;
}

.zehra-aerial-pip-overlay {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: min(36%, 360px);
    z-index: 3;
}

.zehra-aerial-pip-overlay video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    background: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.zehra-aerial-pip-label {
    position: absolute;
    left: 8px;
    bottom: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.8rem;
    line-height: 1;
    pointer-events: none;
}

.pov-video-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pov-video-block video {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    background: #000;
}

.zehra-aerial-videos-container .pov-video-block video {
    max-width: 100%;
}

.sync-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0 24px;
    flex-wrap: wrap;
}

.sync-controls .sync-play {
    padding: 8px 14px;
    border: 1px solid #ccc;
    background: #f7f7f7;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
}

.sync-controls .sync-play:hover {
    background: #eee;
}

.sync-controls .sync-scrubber {
    flex: 1;
    min-width: 200px;
}

.sync-controls .sync-time {
    font-size: 0.9rem;
    color: #444;
    white-space: nowrap;
}

/* Responsive design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .video-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .grid-spacer {
        display: none;
    }
    
    .column-label {
        grid-column: 1 !important;
        writing-mode: horizontal-tb;
    }
    
    .column-label:nth-child(2) {
        grid-row: 1;
    }
    
    .column-label:nth-child(3) {
        grid-row: 2;
    }
    
    .column-label:nth-child(4) {
        grid-row: 3;
    }
    
    .row-label {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        padding: 10px;
    }
    
    .original-label {
        grid-row: 4;
        grid-column: 1;
    }
    
    .video-container:nth-child(5) {
        grid-row: 5;
        grid-column: 1;
    }
    
    .video-container:nth-child(6) {
        grid-row: 6;
        grid-column: 1;
    }
    
    .video-container:nth-child(7) {
        grid-row: 7;
        grid-column: 1;
    }
    
    .corrected-label {
        grid-row: 8;
        grid-column: 1;
    }
    
    .video-container:nth-child(9) {
        grid-row: 9;
        grid-column: 1;
    }
    
    .video-container:nth-child(10) {
        grid-row: 10;
        grid-column: 1;
    }
    
    .video-container:nth-child(11) {
        grid-row: 11;
        grid-column: 1;
    }
    
    .comparison-slider-container {
        width: 90%;
    }
    
    .small-placeholders {
        width: 100%;
        grid-template-columns: 1fr;
    }
    
    .pov-videos-container {
        grid-template-columns: 1fr;
    }

    .zehra-aerial-pip-overlay {
        right: 10px;
        bottom: 10px;
        width: min(52%, 320px);
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .scale-calibration-text {
        padding: 0 20px;
    }
    
    .analysis-subsections {
        padding: 0 20px;
        gap: 40px;
    }
    
    .analysis-subsection .subsection-title {
        font-size: 1.3rem;
    }
    
    .subsection-content {
        font-size: 0.95rem;
    }
    
    .environment-images {
        gap: 20px;
    }
    
    .image-placeholder {
        min-height: 200px;
    }
    
    .image-placeholder .placeholder-label {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    .video-play-icon {
        width: 42px;
        height: 42px;
    }
    
    .video-play-icon svg {
        width: 21px;
        height: 21px;
    }
    
    .video-play-text {
        font-size: 0.85rem;
    }
}

