/*
Theme Name: Coaico Child 2025
Theme URI: https://wordpress.org/themes/twentytwentyone/
Template: twentytwentyone
Author: the WordPress team
Author URI: https://wordpress.org/
Description: CO/AI redesign 2025 - Clean, minimal design with left sidebar navigation
Tags: one-column,accessibility-ready,custom-colors,custom-menu,custom-logo,editor-style,featured-images,footer-widgets,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready
Version: 2.0.0
*/


/* ==========================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================== */
:root {
  /* Colors */
  --color-primary-green: #4A7C59;
  --color-green-hover: #3E7355;
  --color-light-gray: #F8F9FA;
  --color-light-text: #BBC0CD;
  --color-dark-text: #1A1A1A;
  --color-gray-text: #4A4A4A;
  --color-border: #E5E5E5;
  --color-white: #FFFFFF;
  --color-mint-bg: #EEFBF6;
  --fontsize: 17px;

  /* Typography */
  --font-body: 'Nunito', sans-serif;
  --font-heading: 'Nunito Sans', sans-serif;

  /*2021 theme vars*/
  --global--font-primary: unset;
  --global--font-secondary: unset;
  --button--color-text: unset;
  --button--color-text-hover: unset;
  --button--color-text-active: unset;
  --button--color-background: unset;
  --button--color-background-active: unset;
  --button--font-family: unset;
  --button--font-size: unset;
  --button--font-weight: unset;
  --button--line-height: unset;
  --button--border-width: unset;
  --button--border-radius: unset;
  --button--padding-vertical: unset;
  --button--padding-horizontal: unset;
  --list--font-family: unset;

  /* Layout */
  --sidebar-width: 240px;
  --sidebar-collapsed-width: 80px;
  --mobile-header-height: 60px;

  /* Transitions */
  --transition-speed: 0.2s;

  /* overrides from parent theme */
  --global--color-primary: var(--color-gray-text);
}

/* Oct 2025: choices overrides were previously inline in header.php */
.choices[data-type*="select-multiple"] .choices__inner,
.choices[data-type*="text"] .choices__inner {
  cursor: text;
  border: none !important;
}

.choices__list--dropdown {
  font-size: 16px !important;
  /* Adjust the font size as needed */
  max-height: 300px !important;
  /* Adjust the maximum height as needed */
  min-width: 300px !important;
  overflow-y: scroll !important;
}

/*================ overriding parent theme ========*/
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"]{
  border-width:1px !important;
  border-radius:50px;
  padding:14px;
  font-size: var(--fontsize);
  line-height:var(--fontsize);
  outline:none !important;
  color: var(--color-dark-text);
  font-family: var(--font-body);
  transition: border-color 0.2s;
  border:2px solid var(--color-primary-green);
}
button:not(:hover):not(:active):not(.has-background){
  background: unset;
}
.post-thumbnail, .entry-content .wp-audio-shortcode, .entry-content > :not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), [class*="inner-container"] > :not(.entry-content):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .default-max-width{
  max-width:100%;
}



/* ==========================================
   2. RESET & BASE STYLES
   ========================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: var(--fontsize);
  line-height: 1.6;
  color: var(--color-gray-text);
  background-color: var(--color-white);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark-text);
  line-height: 1.2;
}

h1, .h1 { font-size: 48px; }
h2, .h2 { font-size: 36px; }
h3, .h3 { font-size: 24px; }
h4, .h4 { font-size: 20px; }
h5, .h5 { font-size: 18px; }
h6, .h6 { font-size: 16px; }
h1, h2, h3, h4, h5, h6{
  font-family:var(--font-heading);
}


@media screen and (max-width: 768px){
  h1, .h1 { font-size: 36px; }
  h2, .h2 { font-size: 24px; }
  h3, .h3 { font-size: 20px; }
  h4, .h4 { font-size: 18px; }
  h5, .h5 { font-size: 16px; }
  h6, .h6 { font-size: 14px; }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed);
}
a:hover{
  color:inherit;
  text-decoration:none;
}

img {
  max-width: 100%;
  height: auto;
}
strong {
  font-weight: 800 !important;
}

/* ==========================================
   3. DESKTOP SIDEBAR NAVIGATION
   ========================================== */
.sidebar-nav {
  width: var(--sidebar-width);
  background-color: var(--color-light-gray);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 20px;
  transition: width var(--transition-speed);
  flex-shrink: 0;
  border-radius:9px;
  align-self:flex-start; /* prevent from stretching to height*/
}

@media screen and (min-height: 700px){
  .sidebar-nav{
    position:sticky;
    top:calc(10px + var(--wp-admin--admin-bar--height, 0px));
  }
}


.sidebar-nav.collapsed {
  width: var(--sidebar-collapsed-width);
}

/* Sidebar Header (logo + toggle button) */
.sidebar-nav .sidebar-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
}

/* Sidebar Toggle Button */
.sidebar-toggle {
  background: none !important;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--color-gray-text) !important;
  padding: 8px;
  margin: 0;
  transition: color 0.2s;
  flex-shrink: 0;
}

.sidebar-toggle:hover {
  color: var(--color-primary-green);
}

/* Sidebar Logo */
.sidebar-nav .sidebar-logo {
  flex: 1;
  transition: opacity var(--transition-speed);
}

.sidebar-nav .sidebar-logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  padding: 0;
}

.sidebar-nav .sidebar-logo .logo-img {
  height: 32px;
  width: auto;
  margin-bottom: 4px;
}

.sidebar-nav .sidebar-logo .logo-tagline {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-gray-text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space:nowrap;
}

/* Hide logo when collapsed */
.sidebar-nav.collapsed .sidebar-logo {
  display: none;
}

/* Sidebar Menu */
.sidebar-nav .sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom:20px;
  width: 100%;
}

.sidebar-nav .sidebar-menu li {
  width: 100%;
  list-style: none;
  margin: 0;
}

.sidebar-nav .sidebar-menu a {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--color-gray-text);
  font-size: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: color 0.2s, background-color 0.2s;
  text-align: left;
  width: 100%;
  border-radius: 8px;
  white-space:nowrap;
}

.sidebar-nav .sidebar-menu a:hover, .sidebar-nav .sidebar-menu a.active {
  background-color: rgba(74, 124, 89, 0.1);
  color: var(--color-primary-green);
  text-decoration: none !important;
}
.sidebar-nav.collapsed .sidebar-menu a{
  padding-right:0; padding-left:0;
}


.sidebar-nav .sidebar-menu li.active a {
  color: var(--color-primary-green);
}

.sidebar-nav .sidebar-menu a i {
  font-size: 20px;
  margin-right: 12px;
  margin-bottom: 0;
  display: inline-block;
  width: 20px;
  text-align: center;
}
.sidebar-nav.collapsed .sidebar-menu a i{
  margin-right:0;
  width:40px;
}

.sidebar-nav .sidebar-menu a span {
  display: inline-block;
  white-space: nowrap;
  transition: opacity var(--transition-speed);
}

.sidebar-nav.collapsed .sidebar-menu a span {
  opacity: 0;
  font-size: 0;
  height: 0;
  overflow: hidden;
}
.sidebar-nav.collapsed .btn-newsletter i{
  margin-right:0;
}
.sidebar-nav.collapsed .sidebar-toggle{
  margin-left:4px;
}
/* COAI Logo in About Us link */
.sidebar-nav .nav-logo {
  width:25px;
  margin-right: 8px;
}
.sidebar-nav.collapsed .nav-logo{
  margin-right:0;
}
.sidebar-nav.collapsed .about-link{
  display:block;
  text-align:center;
}

/* Sidebar Social Icons */
.sidebar-nav .sidebar-social {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  width: 100%;
}

.sidebar-nav .sidebar-social a {
  color: var(--color-gray-text);
  font-size: 16px;
  transition: color 0.2s;
  text-decoration: none !important;
  display: inline-block;
  opacity: 0.6;
}

.sidebar-nav .sidebar-social a:hover {
  color: var(--color-primary-green);
  text-decoration: none !important;
  opacity: 1;
}

/* Hide social icons when collapsed */
.sidebar-nav.collapsed .sidebar-social {
  display: none;
}

/* Hide desktop sidebar on mobile */
@media (max-width: 768px) {
  .sidebar-nav {
    display: none !important;
  }
}

/* ==========================================
   4. PAGE WRAPPER (offset for sidebar)
   ========================================== */
.page-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 40px 20px 0;
  display: flex;
  gap: 60px;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px) {
  .page-wrapper {
    padding-top: var(--mobile-header-height);
    display: block;
    gap: 0;
    padding:80px 0 0 0;
  }
  .page-content{
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ==========================================
   5. MOBILE HEADER
   ========================================== */
.mobile-header {
  display: none;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--mobile-header-height);
  background-color: white;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}


@media (max-width: 768px) {
  .mobile-header {
    display: flex;
  }
}

/* Hamburger Button */
.hamburger-btn {
  background: none !important;
  color: var(--color-dark-text) !important;
  border: none;
  cursor: pointer;
  font-size: 24px;
  padding: 8px;
  transition: color 0.2s;
}

.hamburger-btn:hover {
  color: var(--color-primary-green);
}

/* Mobile Logo */
.mobile-logo {
  padding-top: 7px;
  flex: 1;
  text-align: center;
}

.mobile-logo a {
  text-decoration: none;
  display: inline-block;
}

.mobile-logo img {
  max-height: 40px;
  width: auto;
}
#mobile-menu-close{
  display:inline-block;
  position:absolute;
  left: 15px; top: 15px;
  color:#000 !important;
}
.mobile-logo h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  margin: 0;
  color: var(--color-dark-text);
  letter-spacing: 1px;
}

.mobile-logo p {
  font-family: var(--font-heading);
  font-size: 10px;
  margin: 0;
  color: var(--color-gray-text);
  letter-spacing: 1.5px;
}

/* Mobile Subscribe Button */
.btn-subscribe-mobile {
  background-color: transparent;
  color: var(--color-primary-green);
  border: 2px solid var(--color-primary-green);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  transition: background-color 0.2s, color 0.2s;
}

.btn-subscribe-mobile:hover {
  background-color: var(--color-primary-green);
  color: white;
}

/* ==========================================
   6. MOBILE MENU OVERLAY
   ========================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform var(--transition-speed);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

/* Menu Close Button */
.menu-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 32px;
  color: var(--color-dark-text);
  align-self: flex-start;
  transition: color 0.2s;
}

.menu-close-btn:hover {
  color: var(--color-primary-green);
}

/* Mobile Menu Logo */
.mobile-menu-logo {
  margin-top:10px;
  margin-bottom: 15px;
  padding-left:60px;

}

.mobile-menu-logo img {
  max-height: 50px;
  width: auto;
  margin-bottom: 10px;
}

.mobile-menu-logo h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  margin: 0 0 5px 0;
  color: var(--color-dark-text);
  letter-spacing: 2px;
}

.mobile-menu-logo p {
  font-family: var(--font-heading);
  font-size: 12px;
  margin: 0;
  color: var(--color-gray-text);
  letter-spacing: 2px;
}

/* Mobile Menu Navigation */
.mobile-menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-nav li {
  margin-bottom: 0;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  text-decoration: none !important;
  color: var(--color-dark-text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
}

.mobile-menu-nav a:hover {
  background-color: rgba(74, 124, 89, 0.1);
  color: var(--color-primary-green);
}

.mobile-menu-nav li.active a {
  color: var(--color-primary-green);
  background-color: rgba(74, 124, 89, 0.1);
}

.mobile-menu-nav a i {
  font-size: 28px;
  margin-right: 15px;
  width: 32px;
  text-align: center;
}

.mobile-menu-nav li .nav-logo{
  width:40px;
  margin-right:8px;
}

/* Mobile Menu Social Icons */
.mobile-menu-social {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 20px 0 10px 0;
}

.mobile-menu-social a {
  color: var(--color-gray-text);
  font-size: 28px;
  transition: color 0.2s;
}

.mobile-menu-social a:hover {
  color: var(--color-primary-green);
}

/* Hide mobile menu overlay on desktop */
@media (min-width: 768px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* ==========================================
   7. UTILITIES
   ========================================== */
.altfont{ font-family: var(--font-heading); }
.bodyfont{ font-family: var(--font-body); }
.small{ font-size: 14px; }
.xsmall{ font-size: 12px; }
.xxsmall{ font-size: 10px; }
.bold{font-weight: 700; }
.bolder{ font-weight: 800 !important; }
.upper{text-transform: uppercase !important; }
.center{text-align:center !important; }
.green{ color: var(--color-primary-green) !important; }
.greenhover:hover{ color: var(--color-primary-green) !important; }
.mintbg{ background-color: var(--color-mint-bg) !important; }
.lighttext{ color: var(--color-light-text); }
.graytext, .greytext{ color: var(--color-gray-text); }
.darktext { color: var(--color-dark-text) !important; }
.mr-2\.5{ margin-right: 0.25rem; }
.bglight{ background-color: var(--color-light-gray); }
.relative{position:relative; }
.absolute{position:absolute; }
.sticky{position: sticky; z-index:2; top:0; }

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}
.trunc-1, .trunc-2, .trunc-3, .trunc-4, .trunc-5 {
  display: block;              /* Regular block container */
  overflow: hidden;            /* Hide overflowing text */
  display: -webkit-box;        /* Fallback for WebKit */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;       /* WebKit fallback */
  /* Modern, cross-browser syntax */
  line-clamp: 1;               /* Number of lines */
  box-orient: vertical;        /* Orientation for line clamping */
  block-overflow: ellipsis;    /* Show "..." after clipped content */
  word-break: break-word;      /* Wrap long words */
}
.trunc-2{ line-clamp: 2; -webkit-line-clamp: 2; }
.trunc-3{ line-clamp: 3; -webkit-line-clamp: 3; }
.trunc-4{ line-clamp: 4; -webkit-line-clamp: 4; }
.trunc-5{ line-clamp: 4; -webkit-line-clamp: 5; }



/* ==========================================
   Components
   ========================================== */

/* ==========================================
   8. FOOTER
   ========================================== */
footer.site-footer {
  background-color: var(--color-mint-bg);
  padding: 40px;
  margin:60px 0 30px 0;
  border-radius: 12px;
  clear:both;
  max-width:100%;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Footer Left Column */
.footer-left {
  display: flex;
  flex-direction: column;
  margin-right:100px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 8px;
}

.footer-tagline {
  letter-spacing: 1px;
  margin: 0;
}

.footer-copyright {
  letter-spacing: 0.5px;
  margin: 0;
  margin-top: auto;
}

/* Footer Right Column */
.footer-right {
  display: flex;
  flex-direction: column;
}

.footer-subscribe-title {
  font-weight: 400;
  color: var(--color-dark-text);
  margin: 0 0 20px 0;
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: auto;
}
.footer-links, .footer-links a{
  letter-spacing: 0.5px;
  font-weight: 600;
}
.footer-links a {
  transition: color 0.2s;
}
.footer-links .powered a{
  text-decoration:underline;
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
  footer.site-footer {
    padding:20px;
    margin-bottom:0;
  }
  .footer-copyright{
    margin:1.5em 0;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-left{
    margin-right:0;
  }

  .footer-links {
    gap:0.5em;
  }
}



/* ==========================================
   General Components
   ========================================== */

.top-callout{/* small callout at the top of a page*/
  text-align:center;
  text-transform:uppercase;
  font-size: 80%;
  border-radius: 0.25rem;
  background: var(--color-light-gray);
  padding:0.25rem;
}

/* ========== Button ================= */
button, .but{ /* not to be confused with bootstrap .btn*/
  display:inline-block;
  border-radius: 40px;
  border: 1px solid var(--color-primary-green);
  color:var(--color-primary-green) !important;
  background: #FFF;
  padding:15px 25px;
  line-height:1em;
  text-decoration: none !important;
  font-weight: 600;
}
button, .but:hover, .but.filled{
  background: var(--color-primary-green) !important;
  color: #FFF !important;
}
.but:hover.filled{
  background: #fff !important;
  color: var(--color-primary-green) !important;
}


/* ========== story toolbar ================= */
.searchbox{
  position:relative;
  margin-right:3rem;
  flex:1;
  max-width: 662px;
}
.searchbox .fa{
  position:absolute;
  left:14px;
  top:50%;
  transform:translatey(-50%);
  color:var(--color-light-text);
}
.searchbox input{
  padding-left: 40px;
  width:100%;
}
.story-tools .tool svg{
  fill: var(--color-light-text);
}
.story-tools .tool.active svg{
  fill:var(--color-primary-green);
}
/*================= story grid ===========*/
.story-list{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.story-list.big-list{
  grid-template-columns: repeat(2, 1fr);
}
.story-list .list-full-promo{
  grid-column: 1/-1;
}

.story-list .story{
  display:block;
  border-radius:20px;
  background: var(--color-light-gray);
  padding: 20px;
  transition:all .2s ease;
  transform: scale(1);
  opacity: 1;
}
.story-list .story:hover h3{
  color:var(--color-primary-green);
}
.story-list.small-list .story h3{
  font-size:20px;
}
.story-list.small-list .story .cta{
  font-size:14px;
}

.story-list .story.new{
  background:var(--color-mint-bg);
  transform:scale(1.1);
  opacity: 0.5;
}

/* compact list */
.story-list.list-list{
  display:block;
}
.story-list.list-list a{
  padding:0;
  background:none;
  margin-bottom:0.25em;
  border-radius:0;
}
.story-list.list-list .list-full-promo{
  margin: 1em auto;
}
.story-list.list-list .story h3{
  font-size:16px;
  margin:0;
  line-clamp:1; -webkit-line-clamp: 1;
}
.story-list.list-list .story:hover h3{
  text-decoration: underline;
}
.story-list.list-list .story p{
  font-size:14px;
  line-clamp:1; -webkit-line-clamp: 1;
  padding:0;
  margin:0;
}
.story-list.list-list .cta{
  display:none;
}
.story-list.list-list .story .time{
  display:block;
  font-weight:bold;
  font-size:16px;
  padding-top:0.5em;
  padding-bottom:0.25em;
  color: var(--color-primary-green);
}
.story-list.list-list .time:not(.first-date){
  display:none;
}
.story-list.list-list .story-ad {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.story-list.list-list .story-ad-img {
  max-width:75px;
  flex-shrink: 0;
}



/* end compact list */

@media screen and (max-width:900px){
  .story-list{
    display:block;
  }
  .story{
    margin-bottom: 1em;
  }
  .story-list .story-ad.sticky{
    position:static;
  }
}
.story-list .story .time{
  font-size:80%;
  color: var(--color-gray-text);
}
.story-list .story h3{
  margin:0.75em 0;
}
.story-list .story .cta{
  color: var(--color-primary-green);
  font-weight:800;
  text-transform: uppercase;
}
/*============== subscribe input form element =============*/
.subscribe-form {
  position: relative;
  display: flex;
  align-items: center;
}
.subscribe-form .email-input {
  flex: 1;
  padding: 14px 140px 14px 20px;
  width: 100%;
}
.subscribe-form .but, .subscribe-form .but:hover {
  position: absolute;
  right: 0px;
  background-color: var(--color-primary-green) !important;
  border-color: var(--color-primary-green);
  color: white !important;
  line-height:22px;
}
/*=========== social svg icons =============*/
.social-links {
  display: flex;
  gap: 5px;
}
.social-links a {
  border-radius:5px;
  display: block;
}
.social-links a svg, .social-links a svg path {
  width: 25px;
  height: 25px;
  padding: 5px;
  border: 1px solid var(--color-primary-green);
  border-radius: 5px;
  fill: var(--color-primary-green);
}
.social-links a:hover{
  background: var(--color-primary-green);
}
.social-links a:hover svg, .social-links a:hover svg path{
  fill: #fff
}
/*=============== toast (TODO) ===============*/
.toast {
  visibility: hidden;
  min-width: 250px;
  margin: auto;
  background-color: var(--color-primary-green) !important;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  right: -7% !important;
  bottom: 30px;
  transform: translateX(-50%);
}


/*============ video =============*/
.video-wrapper {
   position: relative;
   width: 100%;
   max-width: 100%;
   padding-bottom: 56.25%;
   height: 0;
   overflow: hidden;
}

.video-wrapper .video-thumbnail {
   position: absolute;
   top: 0;
   left: 0;
   cursor: pointer;
   width: 100%;
   height: 100%;
}

.video-wrapper .video-thumbnail img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.video-wrapper .play-button {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: rgba(0, 0, 0, 0.6);
   color: white;
   font-size: 35px;
   border-radius: 100%;
   padding: 20px;
   line-height: 31px;
}
.video-wrapper .video-embed {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
.video-wrapper .video-embed iframe {
   width: 100%;
   height: 100%;
   border: none;
}

/*=========== article detail page ==========*/
.article{
  background: var(--color-light-gray);
  padding:50px;
  border-radius: 9x;
}
.article-content a{
  color: var(--color-primary-green);
  text-decoration: underline;
}
@media screen and (max-width: 768px){
  .article{ padding: 15px; }
}

