form.submitting .wpcf7-submit{
pointer-events: none;
}
.fancybox-content {
overflow: hidden !important;
}
@media (max-width: 1180px) {
.equipment__item.equip:hover {
background: initial;
}
}
.hero__bg-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover; z-index: 0;
}
.hero__bg::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgb(255 255 255 / 71%); z-index: 1;
pointer-events: none; }  .page--work {
background: #fff;
color: #0B1220;
}
.page--work .page-title {
font-size: 36px;
font-weight: 700;
line-height: 1.2;
margin: 40px 0 24px;
} .work-case {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
padding: 40px 0;
}
@media (max-width: 1024px) {
.work-case {
grid-template-columns: 1fr;
gap: 24px;
}
} .work-case__image {
position: relative;
border-radius: 16px;
overflow: hidden;
background: #F2F4F7;
display: block;
}
.work-case__image img {
width: 100%;
height: auto;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
} .work-case__content {
display: flex;
flex-direction: column;
}
.work-case__title {
font-size: 36px;
font-weight: 800;
line-height: 1.2;
color: #0B1220;
margin: 0;
}
.work-case__lead {
font-size: 18px;
color: #4B5563;
margin-top: 12px;
line-height: 1.5;
}
.work-case__description {
font-size: 16px;
line-height: 1.75;
color: #333;
margin-top: 24px;
} .work-case__meta {
margin-top: 24px;
}
.meta {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.meta-chip {
background: #F5F7FA;
padding: 8px 12px;
border-radius: 12px;
font-size: 14px;
color: #0B1220;
display: inline-flex;
align-items: center;
}
.meta-chip:hover {
background: #EAF4E0;
color: #0B1220;
} .work-case__team {
display: flex;
gap: 24px;
margin-top: 40px;
}
.work-case__doctor, .work-case__technician {
display: flex;
flex-direction: column;
align-items: center;
}
.doctor-photo, .technician-photo {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 12px;
}
.work-case__doctor .doctor-name, .work-case__technician .technician-name {
font-size: 16px;
font-weight: 600;
color: #0B1220;
}
.work-case__doctor .doctor-role, .work-case__technician .technician-role {
font-size: 14px;
color: #6B7280;
} @media (max-width: 1024px) {
.work-case__team {
flex-direction: column;
gap: 16px;
}
}
@media (max-width: 640px) {
.work-case__title {
font-size: 28px;
}
.work-case__lead {
font-size: 16px;
}
}   .page--works {
--acc: #8EA24E;
--acc-veil: rgba(142, 162, 78, 0.14);
--acc-grad: linear-gradient(90deg, #8EA24E 0%, #74863F 100%);
--ink: #0B1220;
--muted: #6B7280;
--line: rgba(17, 24, 39, 0.10);
--card: #fff;
--soft: #F5F7FA;
--radius: 18px;
color: var(--ink);
background: #fff;
}
.page--works .page-title {
font: 800 36px/1.2 Inter, system-ui;
letter-spacing: -0.01em;
margin-bottom: 20px;
} .works-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
} @media (max-width: 1200px) {
.works-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 640px) {
.works-grid {
grid-template-columns: 1fr;
}
} .work-item {
position: relative;
display: block;
overflow: hidden;
border-radius: 20px;
border: 1px solid rgba(17, 24, 39, 0.08);
box-shadow: 0 2px 8px rgba(16, 24, 40, 0.06), 0 14px 34px rgba(16, 24, 40, 0.08);
transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.work-item::after {
content: "";
position: absolute;
inset: -2px;
border-radius: inherit;
pointer-events: none;
box-shadow: 0 0 0 2px rgba(142, 162, 78, 0.18), 0 10px 30px rgba(142, 162, 78, 0.18);
opacity: 0;
transition: opacity 0.18s ease;
}
.work-item:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(16, 24, 40, 0.06), 0 22px 52px rgba(16, 24, 40, 0.12);
}
.work-item:hover::after {
opacity: 1;
} .work-item__link {
display: grid;
grid-template-columns: 1fr;
grid-template-areas:
"media"
"meta"
"title"
"desc"
"doctors";
text-decoration: none;
color: inherit;
height: 100%;
} .work-item__image {
grid-area: media;
position: relative;
overflow: hidden;
border-radius: 16px;
margin: 15px 15px 0;
background: #f3f4f6;  padding-bottom: 60%;
}
.work-item__image img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
object-fit: cover;
transition: transform 0.35s ease;
will-change: transform;
}
.work-item:hover .work-item__image img {
transform: scale(1.03);
} .work-item__title {
grid-area: title;
margin: 12px 16px 6px;
font: 800 18px/1.35 Inter, system-ui;
letter-spacing: -0.01em;
transition: color 0.18s ease;
}
.work-item:hover .work-item__title {
color: var(--acc);
}
.work-item__desc {
grid-area: desc;
margin: 0 16px 12px;
color: var(--muted);
font-size: 15px;
line-height: 1.55;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
} .work-item__meta {
grid-area: meta;
align-self: start;
justify-self: stretch;
margin: 10px 16px 0;
display: flex;
flex-wrap: wrap;
gap: 8px;
padding: 10px;
border-radius: 14px;
background: rgba(255, 255, 255, 0.55);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
box-shadow: 0 8px 22px rgba(16, 24, 40, 0.12);
}
.work-item__meta .meta {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 10px;
border-radius: 999px;
font-size: 13px;
font-weight: 600;
white-space: nowrap;
color: #fff;
background: var(--acc-grad);
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
transition: transform 0.15s ease, filter 0.15s ease;
}
.work-item__meta .meta:hover {
transform: translateY(-1px);
filter: brightness(1.06);
} .work-item__doctors {
grid-area: doctors;
display: flex;
gap: 14px;
align-items: center;
margin: 10px 16px 16px;
padding-top: 10px;
border-top: 1px solid #ECEFF3;
margin-top: auto;
}
.work-item__doctors .doc {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: var(--ink);
}
.work-item__doctors .doc img,
.work-item__doctors .doc .avatar {
width: 32px;
height: 32px;
border-radius: 999px;
background: var(--acc-veil);
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: var(--acc);
object-fit: cover;
} .work-item__overlay {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
color: #0B1220;
font-weight: 600;
font-size: 15px;
background: rgba(142, 162, 78, 0.1);
opacity: 0;
transition: opacity 0.24s ease;
z-index: 2;
border-radius: 20px;
}
.work-item:hover .work-item__overlay {
opacity: 1;
} .works-filters {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin: 6px 0 24px;
}
.chip {
display: inline-flex;
align-items: center;
height: 36px;
padding: 0 14px;
border-radius: 999px;
background: #EFF2F6;
color: #111;
font-weight: 600;
font-size: 14px;
text-decoration: none;
box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.06);
transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.chip:hover {
background: #E7EBF0;
transform: translateY(-1px);
}
.chip.is-active {
background: var(--acc-veil);
box-shadow: inset 0 0 0 1px rgba(142, 162, 78, 0.45);
}
.pagination {
display: flex;
justify-content: center;
margin: 36px 0 72px;
}
.pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 38px;
height: 38px;
padding: 0 8px;
margin: 0 4px;
border-radius: 10px;
background: #EFF2F6;
color: #111;
text-decoration: none;
transition: background 0.18s ease, transform 0.18s ease;
}
.pagination .page-numbers:hover {
background: #E1E6EC;
transform: translateY(-1px);
}
.pagination .current {
background: var(--acc);
color: #fff;
} .work-item__link:focus-visible,
.chip:focus-visible,
.pagination .page-numbers:focus-visible {
outline: 3px solid var(--acc-veil);
outline-offset: 2px;
box-shadow: 0 0 0 2px var(--acc);
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
transition: none !important;
animation: none !important;
}
}
@media (prefers-color-scheme: dark) {
.page--works {
--ink: #EAECEF;
--muted: #AAB0B8;
--card: #0F1216;
--soft: #171B21;
--line: rgba(255, 255, 255, 0.10);
background: #0B0E12;
}
.work-item {
border-color: var(--line);
box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.work-item__meta {
background: rgba(15, 18, 22, 0.55);
}
.work-item__doctors {
border-top-color: var(--line);
}
.chip {
background: #1A1F26;
color: #EAECEF;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.chip:hover {
background: #1F252D;
}
.chip.is-active {
background: rgba(142, 162, 78, 0.18);
}
.pagination .page-numbers {
background: #1A1F26;
color: #EAECEF;
}
.pagination .current {
background: #A3B36B;
color: #0B0E12;
}
}  .contacts--home-cta {
margin: 80px 0 100px;
background: transparent; 
}
.contacts--home-cta .wrapper {
padding: 0 10px; 
}
.contacts-cta-box {
background: #F4F4F4;
border-radius: 32px;
padding: 48px 40px;
}
.contacts--home-cta .contacts__line2 {
align-items: center;
gap: 40px;
}
.contacts--home-cta .col:first-child {
max-width: 520px;
}
.contacts--home-cta .ttl-2 {
font-size: 32px;
line-height: 1.25;
margin-bottom: 16px;
}
.contacts--home-cta .contacts__lead {
margin: 0 0 20px;
font-size: 16px;
line-height: 1.6;
color: #555;
}
.contacts--home-cta .contacts__form {
background: #fff;
padding: 24px 24px 28px;
border-radius: 24px;
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
} @media (max-width: 991px) {
.contacts--home-cta {
margin: 60px 0 80px;
}
.contacts-cta-box {
padding: 32px 20px;
border-radius: 24px;
}
.contacts--home-cta .contacts__line2 {
flex-direction: column;
gap: 24px;
}
.contacts--home-cta .col:first-child {
max-width: 100%;
}
.contacts--home-cta .ttl-2 {
font-size: 26px;
}
}  .video-reviews {
padding: 40px 0 20px;
}
.video-reviews .section-title {
margin-bottom: 24px;
}
.video-reviews__list {
display: flex;
gap: 28px;
overflow-x: auto;
padding-bottom: 10px;
scrollbar-width: none;
}
.video-reviews__list::-webkit-scrollbar {
display: none;
}
.video-reviews__item {
text-align: center;
cursor: pointer;
}
.video-circle {
width: 120px;
height: 120px;
border-radius: 50%;
overflow: hidden;
border: 4px solid #8EA24E; display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 8px 20px rgba(15,23,42,.12);
}
.video-circle img {
width: 100%;
height: 100%;
object-fit: cover;
}
.video-reviews__list {
display: flex;
flex-wrap: wrap;
gap: 24px;
}
@media (min-width: 992px) {
.video-reviews__list {
justify-content: center; }
}
.video-label {
margin-top: 8px;
font-size: 14px;
background: #fff;
padding: 4px 10px;
border-radius: 999px;
display: inline-block;
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
max-width: 208px;
} .video-modal {
position: fixed;
inset: 0;
display: none;
align-items: center;
justify-content: center;
backdrop-filter: blur(4px);
z-index: 9999;
}
.video-modal.open {
display: flex;
}
.video-modal__overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.5);
}
.video-modal__content {
position: relative;
z-index: 10;
background: #000;
padding: 20px;
border-radius: 16px;
max-width: 90%;
}
.video-modal__inner iframe,
.video-modal__inner video {
width: 600px;
max-width: 90vw;
height: 340px;
border-radius: 12px;
}
.video-modal__close {
position: absolute;
top: -15px;
right: -15px;
background: #fff;
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 24px;
}
.video-circle {
width: 140px;
height: 140px;
border-radius: 50%;
overflow: hidden;
position: relative;
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}
.video-circle video {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.video-reviews__item {
display: flex;
flex-direction: column;
align-items: center; } .video-label {
margin-top: 8px;
font-size: 14px;
padding: 4px 12px;
border-radius: 999px;
background: #ffffff;
display: inline-block;
color: #111827;
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
} @media (max-width: 767px) {
.video-reviews__list {
flex-wrap: wrap;
justify-content: center;
gap: 20px 16px;
overflow-x: visible;
}
.video-reviews__item {
width: 45%;
display: flex;
flex-direction: column;
align-items: center;
}
.video-circle {
width: 110px;
height: 110px;
}
.video-label {
margin-top: 6px;
font-size: 12px;
padding: 4px 8px;
max-width: 100%;
text-align: center;
white-space: normal;
}
.video-modal__inner iframe,
.video-modal__inner video {
width: 100%;
height: auto;
}
}  .article-page {
padding: 34px 0 72px;
background: #fdfdfd;
}
.article-shell {
width: 100%;
max-width: 1260px;
margin: 0 auto;
padding: 0 16px;
}
.breadcrumbs {
display: flex;
flex-wrap: wrap;
gap: 8px;
font-size: 14px;
color: #656d76;
margin-bottom: 28px;
}
.breadcrumbs a {
color: #656d76;
text-decoration: none;
}
.breadcrumbs a:hover {
color: #8dbb51;
}
.main-article {
margin-bottom: 56px;
}
.article-header {
margin-bottom: 30px;
}
.category-badge {
display: inline-flex;
align-items: center;
min-height: 32px;
padding: 0 14px;
border-radius: 999px;
background: #8dbb51;
color: #fff;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .02em;
margin-bottom: 18px;
}
.article-title {
margin: 0 0 24px;
font-size: 42px;
line-height: 1.12;
font-weight: 800;
letter-spacing: -0.02em;
color: #1f2328;
}
.article-meta {
display: flex;
flex-direction: column;
gap: 18px;
padding: 20px 0;
border-top: 1px solid #d0d7de;
border-bottom: 1px solid #d0d7de;
}
.meta-authors {
display: flex;
align-items: center;
gap: 16px;
}
.article-page .author-avatar {
width: 52px;
height: 52px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
}
.meta-info {
display: flex;
flex-direction: column;
gap: 2px;
}
.article-page .author-name {
font-size: 16px;
font-weight: 700;
color: #1f2328;
}
.review-name {
font-size: 14px;
color: #656d76;
line-height: 1.5;
}
.meta-stats {
display: flex;
flex-wrap: wrap;
gap: 16px;
font-size: 14px;
color: #656d76;
}
.featured-image {
margin: 30px 0 34px;
}
.featured-image img {
width: 100%;
aspect-ratio: 16 / 9;
object-fit: cover;
border-radius: 16px;
display: block;
}
.featured-image figcaption {
text-align: center;
font-size: 13px;
color: #656d76;
margin-top: 10px;
font-style: italic;
}
.article-layout {
display: block;
}
.article-content {
font-size: 16px;
line-height: 1.8;
color: #1f2328;
min-width: 0;
}
.article-content h2 {
font-size: 20px;
line-height: 1.24;
margin: 42px 0 20px;
font-weight: 700;
scroll-margin-top: 24px;
color: #1f2328;
}
.article-content h3 {
font-size: 24px;
line-height: 1.35;
margin: 30px 0 16px;
font-weight: 700;
color: #1f2328;
}
.article-content p {
margin-bottom: 20px;
color: #333;
}
.article-content ul,
.article-content ol {
padding-left: 24px;
margin-bottom: 24px;
}
.article-content li {
margin-bottom: 10px;
}
.article-content a {
color: #6a9139;
text-decoration: underline;
text-underline-offset: 2px;
font-weight: 500;
}
.article-content a:hover {
color: #55782f;
} .ai-summary-box {
background: #f4f8ec;
border-left: 4px solid #8dbb51;
padding: 24px;
border-radius: 0 12px 12px 0;
margin-bottom: 40px;
}
.ai-summary-box h3 {
margin: 0 0 10px;
color: #6a9139;
font-size: 22px;
} .article-sidebar {
display: none;
}
.toc-box {
background: #fff;
border: 1px solid #d0d7de;
border-radius: 12px;
padding: 24px;
}
.toc-box h4 {
margin: 0 0 16px;
font-size: 18px;
line-height: 1.3;
}
.toc-nav {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 24px;
}
.toc-nav a {
color: #656d76;
font-size: 15px;
border-left: 2px solid transparent;
padding-left: 10px;
text-decoration: none;
line-height: 1.5;
}
.toc-nav a:hover {
color: #6a9139;
border-left-color: #8dbb51;
}
.sidebar-cta {
background: #f4f8ec;
padding: 20px;
border-radius: 12px;
text-align: center;
}
.sidebar-cta h4 {
margin: 0 0 10px;
font-size: 18px;
}
.sidebar-cta p {
margin-bottom: 16px;
color: #656d76;
font-size: 14px;
line-height: 1.6;
}
.btn-primary {
display: inline-flex;
align-items: center;
justify-content: center;
background: #839647;
color: #fff;
padding: 12px 24px;
min-height: 48px;
border-radius: 999px;
font-weight: 600;
text-decoration: none;
transition: .3s ease;
border: 0;
}
.btn-primary:hover {
background: #6a9139;
color: #fff;
}
.btn-block {
display: flex;
width: 100%;
} .share-block--article {
margin-top: 42px;
padding-top: 24px;
border-top: 1px solid #d0d7de;
} .article-footer {
margin-top: 52px;
padding-top: 40px;
border-top: 1px solid #d0d7de;
}
.author-bio-box {
display: flex;
flex-direction: column;
gap: 20px;
background: #fff;
padding: 30px;
border-radius: 20px;
border: 1px solid #d0d7de;
}
.author-bio-box img {
width: 90px;
height: 90px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
}
.bio-text h4 {
margin: 0 0 10px;
font-size: 22px;
line-height: 1.3;
}
.bio-text p {
margin-bottom: 14px;
color: #656d76;
line-height: 1.7;
}
.bio-link {
font-weight: 600;
color: #6a9139;
text-decoration: none;
}
.bio-link:hover {
text-decoration: underline;
} .article-content .quote-block {
position: relative;
margin: 42px 0;
padding: 30px 28px;
background: #ffffff;
border: 1px solid #e3e7eb;
border-radius: 18px;
box-shadow: 0 8px 30px rgba(31, 35, 40, 0.05);
text-align: center;
}
.article-content .quote-block i,
.article-content .quote-block .quote-icon {
display: inline-block;
margin-bottom: 14px;
font-size: 28px;
line-height: 1;
color: #8dbb51;
opacity: 0.35;
}
.article-content .quote-block p {
margin: 0 0 14px;
font-size: 21px;
line-height: 1.7;
font-style: italic;
font-weight: 500;
color: #1f2328;
}
.article-content .quote-block cite {
display: block;
font-size: 14px;
line-height: 1.5;
color: #656d76;
font-style: normal;
font-weight: 600;
}
.article-content .ai-glossary-box {
margin: 34px 0;
padding: 22px 22px 22px 20px;
background: #f0f7ff;
border-left: 4px solid #0070f3;
border-radius: 0 14px 14px 0;
}
.article-content .ai-glossary-box h4 {
margin: 0 0 10px;
font-size: 14px;
line-height: 1.4;
font-weight: 800;
letter-spacing: 0.04em;
text-transform: uppercase;
color: #0070f3;
}
.article-content .ai-glossary-box p {
margin: 0;
font-size: 16px;
line-height: 1.75;
color: #1f2328;
}
.article-content .ai-glossary-box strong {
font-weight: 700;
color: #0b3f86;
}
.article-content .article-references,
.article-references {
margin: 48px 0;
padding: 26px 28px;
background: #f9fafb;
border: 1px solid #dfe4e8;
border-radius: 16px;
}
.article-content .article-references h3,
.article-references h3 {
display: flex;
align-items: center;
gap: 10px;
margin: 0 0 14px;
font-size: 22px;
line-height: 1.35;
font-weight: 700;
color: #1f2328;
}
.article-content .article-references > p,
.article-references > p {
margin: 0 0 16px;
font-size: 15px;
line-height: 1.75;
color: #656d76;
}
.article-content .article-references ol,
.article-references ol {
margin: 0;
padding-left: 22px;
}
.article-content .article-references li,
.article-references li {
margin-bottom: 10px;
color: #4f5863;
font-size: 15px;
line-height: 1.7;
} .article-related {
margin-top: 10px;
} .mobile-sticky-cta {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background: rgba(255,255,255,.95);
backdrop-filter: blur(10px);
border-top: 1px solid #d0d7de;
padding: 14px 18px;
z-index: 1000;
}
.sticky-content {
max-width: 1100px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
}
.sticky-content span {
font-size: 14px;
font-weight: 600;
} @media (min-width: 1024px) {
.mobile-sticky-cta {
display: none;
}
.article-title {
font-size: 52px;
}
.article-meta {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.article-layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 320px;
gap: 60px;
align-items: start;
}
.article-sidebar {
display: block;
}
.sticky-sidebar {
position: sticky;
top: 24px;
}
.author-bio-box {
flex-direction: row;
align-items: flex-start;
}
.author-bio-box img {
width: 100px;
height: 100px;
}
} @media (max-width: 767px) {
.article-page {
padding: 24px 0 90px;
}
.article-title {
font-size: 32px;
}
.article-content {
font-size: 16px;
}
.article-content h2 {
font-size: 18px
}
.article-content h3 {
font-size: 21px;
}
.article-content .quote-block {
padding: 24px 18px;
margin: 34px 0;
}
.article-content .quote-block p {
font-size: 18px;
}
.article-content .ai-glossary-box,
.article-content .article-references,
.article-references {
padding: 18px 16px;
}
} .video-pro {
position: relative;
width: 100%;
aspect-ratio: 16/9;
border-radius: 18px;
overflow: hidden;
margin: 40px 0;
cursor: pointer;
background: #000;
} .video-pro__thumb {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .video-pro::after {
content: '';
position: absolute;
inset: 0;
background: rgba(0,0,0,0.25);
transition: 0.3s;
}
.video-pro:hover::after {
background: rgba(0,0,0,0.35);
} .video-pro__play {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 70px;
height: 70px;
border-radius: 50%;
background: #8dbb51;
color: #fff;
font-size: 22px;
display: flex;
align-items: center;
justify-content: center;
border: none;
cursor: pointer;
z-index: 2;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
transition: 0.3s;
}
.video-pro__play:hover {
transform: translate(-50%, -50%) scale(1.1);
background: #6a9139;
}
.article-content {
max-width: 860px;
}
.article-content p {
margin-bottom: 18px;
}
.article-content h2 {
margin: 21px 0 10px;
}
.article-content h3 {
margin: 32px 0 14px;
}
.article-content h2 + p,
.article-content h3 + p {
margin-top: 0;
}
.article-content {
text-align: left;
} .video-pro iframe {
width: 100%;
height: 100%;
border: none;
} .video-caption {
text-align: center;
font-size: 13px;
color: #656d76;
margin-top: 8px;
} @media (max-width: 767px) {
.video-pro {
border-radius: 12px;
}
.video-pro__play {
width: 56px;
height: 56px;
font-size: 18px;
}
} .article-content .wp-block-video,
.article-content .wp-block-embed {
margin: 40px 0;
} .article-content iframe {
width: 100%;
border-radius: 16px;
border: none;
} .article-content iframe[src*="youtube"],
.article-content iframe[src*="vimeo"] {
aspect-ratio: 16 / 9;
} .article-content .wp-block-video video,
.article-content video {
width: 100%;
max-width: 420px;
margin: 0 auto;
display: block;
border-radius: 20px;
background: #000;
} .article-content .wp-block-video {
text-align: center;
} .article-content video,
.article-content iframe {
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transition: 0.3s;
}
.article-content video:hover,
.article-content iframe:hover {
box-shadow: 0 20px 60px rgba(0,0,0,0.12);
} .article-content figcaption {
text-align: center;
font-size: 13px;
color: #656d76;
margin-top: 10px;
font-style: italic;
} @media (max-width: 767px) {
.article-content video {
max-width: 100%;
border-radius: 14px;
}
} .glossary-page {
background: #f8f9fa;
padding: 56px 0 80px;
}
.glossary-shell {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 16px;
}
.glossary-header {
text-align: center;
margin-bottom: 40px;
}
.glossary-header .badge {
display: inline-flex;
align-items: center;
min-height: 32px;
padding: 0 14px;
border-radius: 999px;
background: #8dbb51;
color: #fff;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 16px;
}
.glossary-header h1 {
font-size: 42px;
line-height: 1.12;
font-weight: 800;
margin: 0 0 16px;
color: #111;
}
.glossary-header p {
color: #656d76;
font-size: 18px;
line-height: 1.7;
max-width: 700px;
margin: 0 auto 30px;
}
.search-wrapper {
position: relative;
max-width: 620px;
margin: 0 auto;
}
.search-icon {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
color: #656d76;
font-size: 16px;
z-index: 2;
}
#termSearch {
width: 100%;
height: 58px;
padding: 0 20px 0 50px;
border: 1px solid #e1e4e8;
border-radius: 999px;
font-size: 16px;
outline: none;
transition: 0.2s ease;
background: #fff;
box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
#termSearch:focus {
border-color: #8dbb51;
box-shadow: 0 4px 20px rgba(141, 187, 81, 0.15);
}
.alphabet-nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 8px;
margin-bottom: 40px;
}
.alphabet-nav a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
background: #fff;
border: 1px solid #e1e4e8;
border-radius: 10px;
color: #1f2328;
text-decoration: none;
font-weight: 700;
transition: 0.2s ease;
}
.alphabet-nav a:hover {
background: #8dbb51;
color: #fff;
border-color: #8dbb51;
}
.glossary-grid {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
}
.letter-section {
grid-column: 1 / -1;
font-size: 34px;
line-height: 1.2;
font-weight: 800;
color: #8dbb51;
border-bottom: 2px solid #e1e4e8;
padding-bottom: 10px;
margin-top: 28px;
}
.term-card {
background: #fff;
border: 1px solid #e1e4e8;
border-radius: 14px;
padding: 22px;
transition: 0.2s ease;
}
.term-card:hover {
box-shadow: 0 8px 24px rgba(0,0,0,0.05);
border-color: #d1d9e0;
}
.term-card:target {
border-color: #8dbb51;
box-shadow: 0 0 0 3px rgba(141, 187, 81, 0.18);
animation: glossaryHighlight 2s ease-out;
}
@keyframes glossaryHighlight {
0% { background-color: #f4f8ec; }
100% { background-color: #fff; }
}
.term-card dt {
font-size: 22px;
line-height: 1.35;
font-weight: 700;
color: #111;
margin-bottom: 10px;
display: flex;
justify-content: space-between;
gap: 16px;
align-items: flex-start;
}
.anchor-link {
color: #c2c8cf;
font-size: 14px;
text-decoration: none;
opacity: 0;
transition: 0.2s ease;
flex-shrink: 0;
margin-top: 4px;
}
.term-card:hover .anchor-link {
opacity: 1;
}
.anchor-link:hover {
color: #8dbb51;
}
.term-card dd {
font-size: 16px;
line-height: 1.7;
color: #656d76;
margin: 0;
}
.term-card dd p:last-child {
margin-bottom: 0;
}
.no-results {
grid-column: 1 / -1;
text-align: center;
padding: 40px;
color: #656d76;
font-size: 18px;
}
@media (min-width: 768px) {
.glossary-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 20px;
}
}
@media (min-width: 1024px) {
.glossary-header h1 {
font-size: 52px;
}
.glossary-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 24px;
}
}
@media (max-width: 767px) {
.glossary-page {
padding: 32px 0 56px;
}
.glossary-header h1 {
font-size: 34px;
}
.glossary-header p {
font-size: 16px;
}
.term-card dt {
font-size: 20px;
}
.term-card dd {
font-size: 15px;
}
}
.share-block .links {
display: flex; align-items: center; gap: 15px; } .share-block .links a {
display: flex;
text-decoration: none; 
}