@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-brown: #998467;
    --secondary-brown: #b98348;
    --light-brown: #9E8664;
    --cream: #e6d9d0;
    --cream1: #e6d9d0;
    --beige: #f5e9db;
    --gold: #a87b5c;
    --dark-brown: #593829;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #171717;
    --text-color: #555555;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --banner-base: #000000;
    --banner-glow: #1f1f1f;
    --quote-bg: #1c1c1c;
    --text-primary: #ffffff;
}

body {
	font-family: "Inter Tight", "Almarai", sans-serif;
	font-weight: 400;
	font-size: 16px;
    line-height: 26px;
 	font-style: normal;
    color: var(--text-color);
	text-align: left;
	background: #fff;
 }

a{
	color: #b98348;
}
a:hover{
	color: #845016;	
}

.text-primary{
	font-size: 15px;
}
.ps-lg-5 {
    padding-left: 0 !important;
  }
p {
	text-align: left;
 }


h1, h2, h3, h4, h5, h6{
	font-family: "Inter Tight", "Almarai", sans-serif;
	font-weight: 700;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #000;
	line-height: 1.3;
}
 

/* Top Navigation */
.top-nav {
 	border-bottom: 1px solid #d9d9d9;
    color: var(--dark-gray);
    padding: 0;
     position: relative;
    z-index: 1000;
	font-size: 15px;
}


.top-nav .dropdown-menu{
	width: 250px;
 	padding: 10px;
	border-radius: 0;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	border: 0px solid;
}

.top-nav .dropdown-menu li{
	display: flex;
	flex-direction:  column;
	padding: 5px 0;	
}

.top-nav .fa{
 	font-size: 17px;
	margin-right: 5px;
}

.current-date{
    padding: 5px 0;
}

/* Top Nav Buttons */
.search-btn, .accessibility-btn {
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 5px 15px 5px 10px;
    transition: var(--transition);
	border-right: 1px solid #d9d9d9;
}

.search-btn:hover, .accessibility-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.search-win h5{
	text-align: left;
	font-size: 17px;
	
}

.search-win ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.search-win ul li{
	list-style: none;
	margin-right: 5px;
}


.search-win  .form-control, .search-win  .btn{
	border-radius: 0;
}

.form-select, .form-control{
	border-radius: 0;	
}

.search-win .btn-dark{
	font-size: 13px;
	padding: 10px 15px;
}

.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0; 
  max-height: 100%;
 }


/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close-search {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-gray);
}

.search-container h2 {
    margin-bottom: 30px;
    color: var(--primary-brown);
    text-align: center;
}

.search-box {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-submit {
    background-color: var(--primary-brown);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    background-color: var(--dark-brown);
}

/* Accessibility Panel */
.accessibility-panel {
    position: fixed;
    top: 50px;
    right: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 20px;
    width: 280px;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition);
}

.accessibility-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.accessibility-content h3 {
    color: var(--primary-brown);
    margin-bottom: 15px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 17px;
    cursor: pointer;
    color: var(--dark-gray);
}

.accessibility-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accessibility-option {
	font-size: 15px;
    background: var(--light-gray);
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    color:#000;
}

.accessibility-option:hover {
    background-color: var(--light-brown);
    color: var(--white);
}

 
/* Logo Section */
.logo-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-logo, .arabic-logo {
     width: auto;
	max-width: 100%;
}

/* Main Navigation */
.main-nav {
    background: #e7d9d0;
    padding: 0;
 }

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") ;
	border: 0px solid !important;
 }

.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  color: #593829;
}

.navbar-nav .nav-link:active{
  color: #593829 !important;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  background: #b3634f !important;
  color: #fff !important;
}

.navbar-nav .dropdown-menu {
  position: static;
  margin: 0;
	padding: 0;
  border-radius: 0;
  min-width: 250px;
  border: 0px solid #ddd;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-top: 0px solid rgb(176, 126, 69);
}

/* Hero News Section with Grid Layout */
.hero-news {
    background-color: var(--beige);
    padding: 50px 0;
}

.hero-news .card-content {
	background: #fff;
	padding: 25px 20px 30px;
}

.hero-news .card-content h3{
	color: #000;
 }

.navbar{
	padding: 0;
}

.nav-link {
	color: #000;
	padding: 13px 12px 13px 12px !important;
	font-size: 16px;
	font-weight: 500;
}
 
/* Main Content */
 

.hero-news .news-card{
	background: none;
	box-shadow: none;
	margin-bottom: 20px;
} 

.hero-news .social-icons {
	flex-direction: row;
}

.hero-news h3 {
   font-size: 18px;
  margin: 0 0px 30px;
 }

.hero-news .card-actions {
  top: 20px;
  right: 10px;
}

.hero-news .card-actions .action-btn {
  background-color: transparent;
  top: 20px;
  right: 10px;
}


.hero-news .read-more{
	position: absolute;
	top: 130px;
	right: 10px;
}


.hero-news .social-icons{
	gap: 5px;
	
}

.hero-news .date-meta {
font-size: 15px;
  font-weight: 500;
  color: #a87b5c;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

.hero-news .card-image {
  margin-bottom: 0;
}

.thumbnail {
  position: relative;
   width: 100%;
  height: 100%;
  overflow: hidden;
}




/* News Grid Layout (from new-design-read-more) */
.news-grid {
    gap: 20px;
    height: 80vh;
    min-height: 500px;
}

.news-grid .card-overlay h3{
	color: #fff;
}

/* News Card Base Styles */
.news-card {
    position: relative;
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.news-card:hover {
    transform: translateY(-5px);
 }

/* Card Image */
.card-image {
    position: relative;
    height: 100%;
	width: 100%;
    overflow: hidden;    
}

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

.news-card:hover .card-image img {
    transform: scale(1.1);
}


/* Card Overlay for Small Cards */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(18, 18, 19, 0) 18.83%, #121213 91.88%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-overlay h3 {
    font-size: 20px;
    margin: 0;
    flex: 1;
}


.card .card-body{
	padding: 0;
	margin-bottom: 20px;
}

.card .card-footer{
	padding: 0;
}


.card-news img {
  height: 270px;
  object-position: top;
  object-fit: cover;
	margin-bottom: 10px;
}


/* Read More Arrow in Overlay */
.read-more {
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.read-more:hover {
    background: white;
    transform: scale(1.1);
    color: var(--secondary-brown);
}

.read-more i {
    font-size: 15px;
}

/* Card Actions (Three Dots) */
.card-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.action-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: white;
    transform: scale(1.1);
}

.action-btn i {
    color: #000;
    font-size: 14px;
}

/* Popup Menu */
.popup-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.popup-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background-color: var(--light-gray);
}

.menu-item i {
    color: var(--primary-brown);
    width: 16px;
}

.menu-item span {
    font-size: 14px;
    color: var(--text-color);
}

/* Large Card Specific Styles */
.large-card {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.large-card .card-image {
    height: 50%;
}

.large-card .card-content {
    height: 50%;
    padding: 25px;
       position: relative;
	background: #fff;
}

.large-card h2 {
    font-size: 25px;
    margin-bottom: 15px;
 }

.large-card p {
    color: #555555;
    margin-bottom: 20px;
    flex: 1;
}

.large-card .card-image img {
  height: 375px !important;
  object-position: top;
}
	
.news-card .card-image img {
  height:  180px;
  object-position: top;
}
	


/* Card Meta */
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
 }

/* Social Icons */
.social-icons {
    display: flex;
    gap: 5px;
}


.social-btn:hover {
    background: var(--secondary-brown);
    color: white;
    transform: scale(1.1);
}

.social-btn:nth-child(1):hover {
    background: #0866FF;
}

.social-btn:nth-child(2):hover {
    background: #000;
}

.social-btn:nth-child(3):hover {
    background: #25d366;
}

.social-btn:nth-child(4):hover {
    background: #bd081c;
}



/* Read More Link for Large Card */
.read-more-link {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--secondary-brown);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    background: var(--primary-brown);
    transform: scale(1.1);
}

.read-more-link i {
    font-size: 17px;
}

/* Secondary News Section */
.secondary-news {
    background-color: var(--beige);
    padding: 50px 0;
}

.secondary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 60vh;
    min-height: 500px;
}

.news-card.secondary {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-card.secondary img {
    width: 100%;
    height: 60%;
    object-fit: cover;
}

.news-card.secondary .card-content {
    padding: 15px;
    height: 40%;
    display: flex;
    align-items: center;
}

.news-card.secondary h3 {
    font-size: 14px;
    color: var(--primary-brown);
    line-height: 1.3;
}

.news-card.large-secondary {
    grid-column: span 2;
    grid-row: span 2;
}

.news-card.large-secondary img {
    height: 70%;
}

.news-card.large-secondary .card-content {
    height: 30%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-card.large-secondary h2 {
    font-size: 17px;
    color: var(--primary-brown);
    margin-bottom: 10px;
}

.news-card.large-secondary p {
    font-size: 13px;
    color: #555555;
    margin-bottom: 15px;
}
 

/* Advertisement Banner */
.ad-banner {
  	margin-bottom: 50px;
}

  .ad-banner img {
    max-width: 100%;
    height: auto;
  }
  
.ad-content img {
    width: 100%;
  }
 

.post-section{
     padding:  20px 0 70px 0;
	background: #e6d9d0;
}

.post-section .post-section .col-lg-4 {
  background: #fbf6f1 !important;
}
 
.post-item ul li .row {
	padding-left: 15px;
}

/* TV Interviews Page Styles */
.tv-interviews {
    background-color: var(--cream1);
     padding: 70px 0;
 }

.tv-interviews .interview-card .card-content{
  color: #000;
	border-bottom: 0px solid;
}

.tv-interviews .interview-card h3 {
  color: #000;
}

.tv-interviews .section-header h1{
	color: #000;
}
.tv-interviews .section-header {
	border-bottom: 1px solid #cec1b8;
}


.section-header h1, .section-header h2 {
    color: #000;
    font-size: 40px;
    text-align: left;
    position: relative;
    padding-bottom: 10px;
}

.section-header h1::after , .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ba8247;
    border-radius: 0;
}

.section-header h4 {
    color: #000;
    font-size: 35px;
    text-align: left;
    position: relative;
    padding-bottom: 10px;
}

    .section-header h4::after {
        content: '';
        position: absolute;
        bottom: -9px;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #a87b5c;
        border-radius: 0;
    }
.interviews-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Featured Interview Styles */
.featured-interview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.interview-image {
    position: relative;
     overflow: hidden;
}

.featured-interview .interview-image img{
	transform: scale(1);  
	transition: transform 0.3s ease-out; 
}

.featured-interview .interview-image img:hover{
    transform: scale(1.1);
}

.interview-image img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
}

.play-button {
    width: 35px;
    height: 35px;
    background-color: rgba(255,255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: rgba(255,255, 255, 0.5);
    transform: scale(1.1);
}

.play-button i {
    color: rgba(0,0,0,.8);
    font-size: 15px;
    margin-left: 3px;
}

.interview-content {
    padding: 20px 0;
	align-self: center;
}

.interview-date {
  color: #a87b5c;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
 }

.interview-content h2 {
    font-size: 25px;
    margin-bottom: 20px;
}

.interview-content p {
    color: #555;
     margin-bottom: 25px;
}

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


/* Related Interviews Grid */
.related-interviews {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.interview-card .card-image img{
	transform: scale(1);  
	transition: transform 0.3s ease-out; 
}

.interview-card .card-image img:hover{
    transform: scale(1.1);
}

.card-content {
    padding: 0;
    gap: 0;
}

.card-content h3 {
    color: #FFFFFF;
    font-size: 18px;
    flex: 1;
    margin: 0;
}

.options-btn {
    background: none;
    border: none;
    color: #D4A574;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.options-btn:hover {
    background-color: rgba(212, 165, 116, 0.1);
    color: #FFFFFF;
}

.options-btn i {
    font-size: 14px;
}



/*. swiper  */
    swiper-container {
      width: 100%;
     }

    swiper-slide {
      text-align: center;
      font-size: 17px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


/*. btn */
.btn.style-two {
  color: #734001;
  border: 1px solid #734001;
  padding-top: 15px;
  padding-bottom: 13px;
}
.btn {
  position: relative;
  z-index: 1;
  line-height: 15px;
  font-weight: 400;
  padding: 15px 27px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
}


 

  /* Page Title */
  .page-title-c {
    text-align: center;
    color: #573011;
    margin: 40px 0;
    font-size: 32px;
  }

  /* Info Boxes */
  .info-box-c {
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	align-items: center;
	border-radius: 6px;
	border: 1px solid #E0E0E0;
	padding: 30px;
	gap: 50px;
	margin-bottom: 35px;
	text-align: left;
	min-height: 160px;
  }
  .info-box-c:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
  }
  .info-box-c i {
    font-size: 45px;
    color: #d3a066;
   }
  .info-box-c p {
    margin: 0;
  }

  /* Contact Form */
  .contact-form-c {
    background-color: #fff;
    padding: 0;
     border-radius: 0;
     width: 100%;
  }
  .contact-form-c label {
    color: #000;
	  margin-bottom: 5px;
  }
  .contact-form-c input,
  .contact-form-c textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 0;
    border: 1px solid #E0E0E0;
  }
  .contact-form-c button {
    background-color: #573011;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .contact-form-c button:hover {
    background-color: #3f1e05;
  }

.content-c {
  position: relative;
}
.content-c::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 50px;
  background: #d7d7d7;
}


/* Newsletter Section */
.newsletter-section {
     padding: 0 0;
    position: relative;
}

.newsletter-container {
     margin: 0 auto;
     align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content h3 {
    color: white;
    font-size: 24px;
     margin: 5px 0;
}

.newsletter-content p {
    font-size: 16px;
	color: white;
	margin: 0 0 10px 0;
	padding: 0;
	line-height: normal;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 16px;
    outline: none;
	width: 70%;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    background:  var(--secondary-brown);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #845016;
}


.breadcrumb {
  font-size: 14px;
}


.publications-section {
  background-color: var(--beige) !important;
	padding: 70px 0 !important;
}

.publications-section p {
  margin-bottom: 20px;
}


/* Footer */
.footer {
    width: 100%;
	background: #563b30;
}


/* Social Media Section */
.social-section {
    padding: 20px 0;
    border-top: 1px solid #3b3b3b;
	    border-bottom: 1px solid #3b3b3b;

}

.social-section .fab {
	font-size: 20px;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.social-icons2 {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: white;
    font-size: 17px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #D2691E;
    transform: translateY(-2px);
}


.logo-icon {
    flex-shrink: 0;
}

.logo-shield {
    width: 50px;
    height: 50px;
    background: #D2691E;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.logo-text h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 4px;
}

.logo-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex: 2;
    justify-content: flex-end;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--gold);
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background:  var(--secondary-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    transform: scale(1.1);
	color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}




 /* Audible Media Section */
.audible-media {
     padding: 70px 0;
}



/* Media Channels Section */
.media-channels {
     padding: 70px 0;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.channel-item {
	background: #c67645;
    display: flex;
    flex-direction: column;
    align-items: center;	
    gap: 15px;
	border: 1px solid #dfdfdf;
	padding: 40px 15px;
}

.channel-logo {
     display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 33px;
	font-weight: 700;
}

.channel-item p {
	font-size: 18px;
    color:#fff;
	margin: 0;
	padding: 0;
}






/* Animation for Read More Arrows */
@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

.read-more:hover i,
.read-more-link:hover i {
    animation: arrowPulse 0.6s ease-in-out infinite;
}

/* Focus States for Accessibility */
.read-more:focus,
.read-more-link:focus,
.action-btn:focus,
.social-btn:focus {
    outline: 2px solid var(--secondary-brown);
    outline-offset: 2px;
}

/* High Contrast Mode */
.high-contrast {
    filter: contrast(150%) brightness(120%);
}

.high-contrast .news-card {
    border: 2px solid var(--dark-gray);
}

.high-contrast .social-btn {
    border: 1px solid var(--dark-gray);
}

/* Keyboard Navigation */
.keyboard-navigation *:focus {
    outline: 2px solid var(--primary-brown);
    outline-offset: 2px;
}



/* News Section with Playback Icons */
.news-section {
    background-color: var(--white);
    padding: 50px 0 0;
}

.news-section .news-card-playback{
	margin-bottom: 50px;
    animation: fadeInUp 0.6s ease forwards;
}

.news-card-playback {
    background: var(--white);
     overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}


.news-section .news-card-playback{
	position: relative;
}
.news-section .news-card-playback .card-content{
	position: absolute;
	bottom: 0;
	color: #fff;
}

.news-card-playback:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-card-playback .card-image {
    position: relative;
	width: 100%;
     overflow: hidden;
}

.news-card-playback .card-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
	object-position: center top;
    transition: transform 0.3s ease;
}

.news-card-playback:hover .card-image img {
    transform: scale(1.1);
}

.news-card-playback .play-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 1);
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
 	z-index: 9;
}

.news-card-playback .play-button:hover {
    background: white;
    transform: scale(1.1);
 }

.news-card-playback .card-content {
    padding: 30px;
}

.news-card-playback .card-content h3 {
     color: #fff;
    margin-bottom: 30px;
	padding: 0 ;
	font-size: 18px;
 	text-align: center;
}


/* Television Interviews Section */
.short-videos {
     padding: 0 0 50px 0;
}

.short-videos .interview-card .card-image{
	height: 350px;
}

.short-videos .interview-card  .card-actions {
  position: relative;
  top: 0;
  right: 0;
  z-index: 10;
}

.short-videos .news-section {
   padding: 0 0 0;
}
 
 
.interviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.interview-card {
      overflow: hidden;
     transition: var(--transition);
	animation: fadeInUp 0.6s ease forwards;
    position: relative;
}

.interview-card:hover {
    transform: translateY(-3px);
}


.interview-card .card-image {
    width: 100%;
    height: 200px;
 }

.interview-card img {
    width: 100%;
	height: 100%;
    object-fit: cover;
	object-position: top;
}

.interview-card .card-content {
    padding: 0;
    text-align: left;
	border-bottom: 1px solid #ddd;
}

.interview-card h3 {
    font-size: 18px;
    color: #000;
    margin: 25px 0;
     display: flex;
	text-align: left;
}

.interview-card .card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.interview-card .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.interview-card .social-btn {
      width: 28px;
    height: 28px;
     cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000;
}

.interview-card .social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.interview-card .social-btn:nth-child(1):hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.interview-card .social-btn:nth-child(2):hover {
    background: #3b5998;
    color: white;
    border-color: #3b5998;
}

.interview-card .social-btn:nth-child(3):hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.interview-card .social-btn:nth-child(4):hover {
    background: #bd081c;
    color: white;
    border-color: #bd081c;
}

.interview-card .social-btn:nth-child(5):hover {
    background: var(--secondary-brown);
    color: white;
    border-color: var(--secondary-brown);
}

.interview-card .social-btn i {
    font-size: 16px;
}

.interview-card .action-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #6c757d;
}

.interview-card .action-btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.view-more {
    text-align: center;
}

.view-more-btn {
    background: #fff;
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 0;
    cursor: pointer;
}

.view-more-btn:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}


/* Most Read News Section */
.most-read {
    padding: 50px 0;
 }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
	border-bottom: 1px solid #cec1b8;
}

.navigation-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.nav-arrow:hover {
    background: var(--primary-brown);
    color: var(--white);
    border-color: var(--primary-brown);
}

.most-read-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.most-read-card {
      overflow: hidden;
     transition: var(--transition);
}

.most-read-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.most-read-card .card-image {
    position: relative;
	width: 100%;
    height: 230px;
    overflow: hidden;
}

.most-read-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.most-read-card:hover .card-image img {
    transform: scale(1.1);
}

.category-tag {
position: relative;
  top: 0;
  left: 0;
  background: var(--primary-brown);
  color: var(--white);
  padding: 1px 14px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-flex;
}

.c-1{
	background: #a87b5c;
}
.c-2{
	background: #a87b5c;
}
.c-3{
	background: #a87b5c;
}

.most-read-card .card-content {
    padding: 20px;    color: #000;

}

.most-read-card h3 {
      margin-bottom: 10px;
	color: #000;
 }

.most-read-card .date {
font-size: 15px;
  font-weight: 500;
  color: #a87b5c;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.most-read-card .card-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 15px;
	border-top: 1px solid #ddd;
	position: relative;
	left: 0;
	padding: 20px 0;
}

.most-read-card .social-icons {
    display: flex;
	flex-direction: row;
    gap: 8px;
}

.most-read-card .social-btn {
      width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000;
}

.most-read-card .social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.most-read-card .social-btn:nth-child(1):hover {
     color: white;
    border-color: #e74c3c;
}

.most-read-card .social-btn:nth-child(2):hover {
     color: white;
    border-color: #3b5998;
}

.most-read-card .social-btn:nth-child(3):hover {
     color: white;
    border-color: #1da1f2;
}

.most-read-card .social-btn:nth-child(4):hover {
     color: white;
    border-color: #bd081c;
}

.most-read-card .social-btn:nth-child(5):hover {
    background: var(--secondary-brown);
    color: white;
    border-color: var(--secondary-brown);
}

.most-read-card .social-btn i {
    font-size: 16px;
 }

.read-more-btn {
    background: var(--primary-brown);
    color: var(--white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
 }

.read-more-btn:hover {
    background: var(--dark-brown);
    transform: scale(1.1);
 }

.read-more-btn i {
    font-size: 14px;
}


/* Eye on the World Section */
.eye-on-world {
    background-color: var(--cream);
    padding: 70px 0;
}

.view-all {
      color: var(--secondary-brown);
    text-decoration: none;
	background: #fff;
	border-radius: 100px;
	padding: 10px 25px;
	font-size: 14px;
}

.view-all:hover {
    color: var(--dark-brown);
}

.world-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.world-card {
    background: var(--white);
     overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
	animation: fadeInUp 0.6s ease forwards;
}

.world-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.world-card .card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.world-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.world-card:hover .card-image img {
    transform: scale(1.1);
}

.world-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
	background: linear-gradient(180deg, rgba(18, 18, 19, 0) 18.83%, #121213 91.88%);
    padding: 30px 20px 20px;
}
.world-card .card-overlay h3 {
	text-align: center;
}

.overlay-text {
    color: var(--white);
     line-height: 1.3;
    text-align: center;
}

.overlay-text h3{
    color: var(--white);
}

.news-list .news-card {
	box-shadow: none;
	border-bottom: 1px solid #ddd;
	margin-bottom: 15px;
	padding-bottom: 15px; 
 }

.news-list .card-content {
 	grid-template-columns: none !important;
}



 
  /* Top Bar */
  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
    color: #5a3820; /* var(--text) */
    background-color: #fff8f0; /* var(--bg) */
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 900;
  }
  


  
  .date {
    color: #a87b5c;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
   }
  
  .icons {
    display: flex;
    gap: 14px;
    align-items: center;
    position: relative;
  }
  
  .icons i {
    font-size: 16px;
    cursor: pointer;
    color: #444;
    position: relative;
  }
  
  /* Search Bar */
  .search-bar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    z-index: 890;
  }
  .search-bar {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.35s ease, opacity 0.35s ease;
}

  .search-bar-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .search-bar input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 28px;
    border: 2px solid #dedede;
    font-size: 15px;
    transition: box-shadow 0.25s, border-color 0.25s;
  }
  
  .search-bar input:focus {
    outline: none;
    border-color: #ff6600; /* var(--accent) */
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
  }
  

  /* Main Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .logo-left img,
  .logo-right img {
    display: block;
  }
  
  /* Overlay for Sidebar */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    z-index: 950;
    pointer-events: none;
  }
  
  /* Sidebar */
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    max-width: 90vw;
    background-color: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    transform: translateX(100%); /* hidden by default */
    z-index: 1000;
  }
  
  .sidebar .close-btn {
    align-self: flex-end;
    font-size: 20px;
    cursor: pointer;
    color: #555555;
  }
  
  .sidebar h2 {
    margin: 0;
    color: #5a3820; /* var(--text) */
  }
  
  .sidebar nav a {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    transition: color 0.3s;
  }
  
  .sidebar nav a:hover {
    color: #ff6600; /* var(--accent) */
  }
  
  /* Accessibility Dropdown */
  .access-dropdown {
    position: absolute;
    top: 42px;
    right: 60px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    z-index: 1000;
  }
  
  .access-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .access-dropdown li {
    padding: 10px 14px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .access-dropdown li:hover {
    background-color: #f7f7f7;
  }
  
  
  /* Header Icons */
  .header-icons {
    display: flex;
    gap: 15px;
  }
  
  .header-icons i {
    color: #555555;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .header-icons i:hover {
    color: #8b4513;
  }
 
 
  
  /* Happening Now Ticker */
  .happening-now {
    background-color: #d2691e;
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
  }


  .content-wrapper {
    display: flex;
    gap: 30px;
	margin: 0 0 50px 0;
    position: relative;
  }
  
/*. Content Inner  */
.content-inner{
	margin: 50px 0 100px;
}
 .content-inner .most-read {
    padding: 50px 0;
	 background-color: var(--beige);
	 margin-bottom: 60px;
}


/* Social Share Sidebar */
.content-inner .social-share {
    position: sticky;
    top: 0;
    width: 80px;
    border-right: 1px solid #e0e0e0;
    padding: 0 10px 15px;
    text-align: center;
    max-height: 340px;
  }
  

.content-inner .img-news img{
	max-height: 500px;
	  object-fit: cover;
	  width: 100%;
	  object-position: top;
}

  .share-count {
 
    margin-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .share-count1 {
    font-size: 24px;
  }
  
  .share-count2 {
    font-size: 10px;
    color: #555555;
  }
  .share-label1 {
    font-size: 15px;
    margin-top: 10px;
  }
  
  .share-label {
    font-size: 10px;
    color: #555555;
    margin-bottom: 15px;
  }

  .social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: black;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    transition: background-color 0.3s;
  }
  
  .social-icons1 a:hover {
    background-color: #e0e0e0;
  }
  #save-btn.saved .share-count1 i {
    color: #007bff; /* لون أزرق عند الحفظ */
  }
  
  #save-btn.saved .share-count2 {
    color: #007bff;
    font-weight: 700;
  }
  
  
  /* Hover effect on all icons inside social-share */
.content-inner  .social-share i {
    transition: color 0.3s, background-color 0.3s;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* Hover style */
  .content-inner  .social-share i:hover {
    
    background-color: #e0e0e0;

  }
  
  
  /* Article */
  .article {
    flex: 1;
    max-width: calc(100% - 110px);
  }
  
  .article-header h1 {
    font-size: 28px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 15px;
  }
  
  .article-meta {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .article-meta .date {
	font-size: 15px;
	font-weight: 500;
	color: #a87b5c;
	text-transform: uppercase;
  }
  
  .article-body p {
    margin-bottom: 20px;
  }
  
  .article-body h3 {
    font-size: 22px;
    color: #8b4513;
    margin: 25px 0 15px 0;
  }
  
  .article-image {
     text-align: center;
  }
  
  .article-image img {
    max-width: 100%;
    height: auto;
   }
  
  .article-images-grid {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    justify-content: center;
  }
  
  .article-images-grid img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Related News */
  
  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .pagination button {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #555555;
    cursor: pointer;
    border-radius: 5px;
    font-size: 17px;
    transition: all 0.3s;
  }
  
  .pagination button:hover {
    background-color: #8b4513;
    color: #fff;
    border-color: #8b4513;
  }
  
  /* View More Link */
  .view-more {
    text-align: center;
  }
  
  .view-more a {
    color: #8b4513;
    text-decoration: none;
    font-size: 14px;
    transition: text-decoration 0.3s;
  }
  
  .view-more a:hover {
    text-decoration: underline;
  }
  
  /* Advertisement Section */
  .advertisement {
    padding: 30px 0;
    background-color: #fff;
    text-align: center;
  }







/* News Ticker Styles */
.news-ticker{
    background-color: var(--beige) !important;
}

.ticker-container {
    background-color: #7b5347;
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
     margin: 0 auto;
     display: flex;
    align-items: center;
}

.ticker-label {
    font-size: 18px;
    margin-right: 16px;
	font-weight: 700;color: #000;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
}

.ticker-text {
    white-space: nowrap;
    font-size: 15px;
    animation: scroll 60s linear infinite;
    cursor: pointer;color: #fff;
}

.ticker-text.paused {
    animation-play-state: paused;
}

.ticker-news-wraper .ticker-header h4 {
  padding: 0 !important;
  margin: 0 !important;
  display: inline-block;
  color: #000 !important;
  font-size: 17px !important;
	font-weight: 500 !important;
}
.walkerwp-wraper.ticker-news-wraper .ticker-header {
height: 50px;
  line-height: 50px;
  text-align: left;
  padding-right: 8px;
  padding-left: 0 !important;
}


.news-ticker-box {
  padding: 0px 15px 0 20px !important;
 }


.focus-news-box{
	font-size: 15px !important;
	font-weight: 400;
}
.news-ticker-box .focus-news-box a {
  font-weight: 400 !important;
}




.walkerwp-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  clear: both;
  display: flex;
  justify-content: left !important;
  align-items: initial;
  flex-wrap: initial !important;
  padding: 0 !important;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

 
.hero-section {
    text-align: center;
    margin-bottom: 64px;
}

.hero-title {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards Grid */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: box-shadow 0.3s ease;
	border: 1px solid #ddd;
	position: relative;
}
.card .card-body{
	padding: 0;
	margin-bottom: 20px;
}

.card .card-footer{
	padding: 0;
}


.card-news img {
  height: 270px;
  object-position: top;
  object-fit: cover;
	margin-bottom: 10px;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: #fef3c7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-icon-inner {
    width: 24px;
    height: 24px;
    background-color: #d97706;
    border-radius: 4px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
   padding: 10px 0 0;
  border-color: #e6eaed;
  color: #000 !important;
  margin-bottom: 20px;
}
 

.card-body .card-title {
    border-color: #e6eaed;
	min-height: 100px;
 }


.card-description {
    color: #6b7280;
    line-height: 1.5;
}









  
  /* Slider container with centered content and subtle shadow */
  .slider-container {
    max-width: 100%;
     margin-top: 50px;
   
  }
  
  /* Owl Carousel container tweaks */
  .owl-carousel {
    margin: 0 auto;
  }
  
  /* Images styling */
  .owl-carousel .item img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
  }
  
  /* Zoom effect on hover */
  .owl-carousel .item img:hover {
    transform: scale(1.1);
  }
  
  /* Hide default Owl Carousel nav arrows */
  .owl-nav {
    display: none;
  }
  
  /* Custom slider controls container */
  .slider-controls {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  
  /* Custom navigation buttons */
  .slider-btn {
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: black;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Hover effect for buttons */
  .slider-btn:hover {
    background-color: #e4e4e4 ;
    transform: scale(1.1);
  }
  

 

  
  
  .owl-carousel .item {
    width: 300px;       /* fixed width for each item */
    height: 200px;      /* fixed height for each item */
    overflow: hidden;   /* hide overflow to crop images */
    margin: 0 auto;
  }
  
  .owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* maintain aspect ratio, crop if needed */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
  }
  
  .owl-carousel .item img:hover {
    transform: scale(1.1);
  }
  /* Related News Section */
.related-news {
    background-color: #F5F1E8;
    padding: 50px 0;
}



/* News Cards */
.news-card {
    overflow: hidden;
    position: relative;
}



/* News Image */
.news-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

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

.news-card:hover .news-image img {
    transform: scale(1.1);
}

/* News Content */
.news-content {
    padding-top: 20px;
    padding-bottom: 15px;
}

.news-title {
    font-size: 17px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-description {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}


/* View More Button */
/* Button with lines container */
.button-with-lines {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.button-with-lines::before,
.button-with-lines::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e1e5e9;
}

.button-with-lines::before {
    margin-right: 0;
}

.button-with-lines::after {
    margin-left: 0;
}


.heading-with-lines {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 30px;
}

.heading-with-lines::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #d1d5db;
    margin-left: 0;
    margin-bottom: 9px;
}
/* Related News Section */
.related-news {
    background-color: #F5F1E8;
    padding: 50px 0;
}



/* News Cards */
.news-card {
    overflow: hidden;
    position: relative;
}



/* News Image */
.news-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

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

.news-card:hover .news-image img {
    transform: scale(1.1);
}

/* News Content */
.news-content {
    padding-top: 20px;
    padding-bottom: 15px;
}

.news-title {
    font-size: 17px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-description {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Social Icons */
.social-icons1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    border-top: 1px solid #F0F0F0;
}

.social-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn:hover {
  
    transform: translateY(-2px);
}

.social-btn.like-btn:hover {
    color: #E74C3C;
}

.social-btn i {
    font-size: 16px;
}

/* View More Button */
/* Button with lines container */
.button-with-lines {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.button-with-lines::before,
.button-with-lines::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e1e5e9;
}

.button-with-lines::before {
    margin-right: 0;
}

.button-with-lines::after {
    margin-left: 0;
}

/* Button styles */
.view-more-btn {
    border: 1px solid #e1e5e9;
    border-radius: 30px;
    color: #374151;
    cursor: pointer;
    font-weight: 500;
    padding: 15px 50px;
	margin-top: 10px;
    transition: all 0.2s ease-in-out;
    outline: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.view-more-btn:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.view-more-btn:active {
    background-color: #f3f4f6;
    border-color: #9ca3af;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transform: translateY(1px);
}

.heading-with-lines {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 30px;
}

.heading-with-lines::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #d1d5db;
    margin-left: 0;
    margin-bottom: 9px;
}

/* Related News heading styles */
.related-news-heading {
    font-size: 35px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.related-news-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #8b4513;
    border-radius: 2px;
}






/* Animation for cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card {
    animation: fadeInUp 0.6s ease forwards;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }
.news-card:nth-child(4) { animation-delay: 0.4s; }

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color,#c88641);
}

/* Footer */
.footer {
    width: 100%;
}


/* Social Media Section */
.social-section {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.social-icons2 {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: white;
    font-size: 17px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #D2691E;
    transform: translateY(-2px);
}





/* Footer Links Section */
.footer-links-section {
     padding: 40px 0 20px;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: start;
    gap: 15px;
    flex: 1;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-shield {
    width: 50px;
    height: 50px;
    background: #D2691E;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.logo-text h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.logo-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex: 2;
    justify-content: flex-end;
}

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

.link-column a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: #D2691E;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p,
.powered-by p {
    color: #fff;
    font-size: 14px;
}







/* News list */
.news-list {
    display: flex;
    flex-direction: column;
}

/* News card */

.card-content {
    grid-template-columns: 2fr 1fr;
 }

/* Text content */
.text-content {
    display: flex;
    flex-direction: column;
 }

.category {
font-size: 14px;
  color: #fff;
  text-transform: uppercase;
   margin-bottom: 15px;
  display: inline-flex;
  padding: 5px 20px;
  align-items: center;
  font-weight: 700;
  background: #a87b5c;
}

.article-title {
    font-size: 20px;
    font-weight: 700;
     color: #000;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

a:hover {
    color: #ad482e;
    cursor: pointer;
}

.article-description {
    font-size: 17px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.author {
font-size: 15px;
  font-weight: 700;
  color: #a87b5c;
  text-transform: uppercase;
  }

.author strong {
font-size: 15px;
  font-weight: 700;
  color: #a87b5c;
  text-transform: uppercase;
  }

p.author{
	margin-bottom: 0
}


/* Image content */
.image-content {
    display: flex;
    justify-content: flex-end;
	margin-left: 25px;
	
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.next-page-btn {
    background-color: #1976d2;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.next-page-btn:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(25, 118, 210, 0.3);
}

.next-page-btn:active {
    transform: translateY(0);
}




/* Loading animation for images */
.article-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.article-image[src] {
    background: none;
    animation: none;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.next-page-btn:focus,
.article-title:focus {
    outline: 2px solid #1976d2;
    outline-offset: 2px;
}


  

/* Main Content Styles */
 

.hero-section {
    text-align: center;
    margin-bottom: 64px;
}

.hero-title {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

 

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: #fef3c7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-icon-inner {
    width: 24px;
    height: 24px;
    background-color: #d97706;
    border-radius: 4px;
}


.card-description {
    color: #6b7280;
    line-height: 1.5;
}













.card-h {
    background-color: #FFFFFF; /* cream */
    border: 1px solid #E0E0E0; /* border-color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #5c5c5c;
    border-radius: 0;
  }
  .card-title-h {
    color: #4A2C17; /* dark-brown */
  }
  .btn-custom-h {
    background-color: #d3a066; /* gold */
    color: #FFFFFF; /* white */
    border: none;
    border-radius: 0;
  }
  
  .btn-custom-h:hover {
    background-color: #3f1e05; /* secondary-brown */
    color: #FFFFFF;
  }
  .bg-dark {
    --bs-bg-opacity: 1;
    background-color: #d3a066 !important;
}    


/* Article Cards for Daily Magazine */
.article-card-m {
    background-color: #ffffff; /* white */
    border-radius: 0;
    border: 1px solid #E0E0E0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 20px;
    margin-bottom: 20px;
    height:100%;
  }
  
  .article-card-m:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .article-title-m {
    color: #4A2C17; /* dark brown */
    margin-bottom: 10px;
  }
  
  .article-text-m {
    margin-bottom: 15px;
  }
  
  .read-more-btn-m {
    background-color: #d3a066; /* gold */
    color: #FFFFFF;
    border: none;
    border-radius: 0;
  }
  
  .read-more-btn-m:hover {
    background-color: #3f1e05; /* secondary brown */
    color: #FFFFFF;
  }
  
  .publish-date-m {
    font-size: 0.85rem;
    color: #5c5c5c;
    margin-bottom: 10px;
  }
  

.title-gallry-p
{
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}
  /* Gallery Styles */
  .gallery-p {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
  }
  .gallery-item-p {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer; 
    width: 100%;   /* full width of the grid column */
  }
  .gallery-item-p img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
    .gallery-item-p img {
        height: 220px; /* adjust as you like */
        width: 100%;
        object-fit: cover;
        border-radius: 6px; /* optional */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
  .gallery-item-p:hover img {
    opacity: 0.8;
  }

  /* Overlay with title and description */
  .overlay-p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(87, 48, 17, 0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
    transition: background 0.3s ease;
	  backdrop-filter: blur(15px);
  }
  .gallery-item-p:hover .overlay-p {
    background: rgba(211, 160, 102, 0.7);
	 	  backdrop-filter: blur(15px);
  }

  .overlay-p h3 {
    margin: 0;
    font-size: 20px;
	  color: #fff;
  }
   .overlay-p p {
	  margin: 0;
	   font-size: 17px;
	   text-align: center;
  }
 


						


/* Mega Menu Base */
.dropdown-mega {
    position: static;
}

.dropdown-menu.mega-menu {
    width: 100%;
    border: none;
    border-radius: 0;
    left: 0;
    right: 0;
    padding: 1rem 1rem;
    margin-top: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

.mega-menu h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.mega-menu a {
height: 75px;
  align-content: center;
  padding: 5px 0;
  margin: 0;
  border-bottom: 1px solid #ddd;
  line-height: 25px;

}

    .mega-menu a:hover {
        color: #AF7D43;
    }


 

 
.dropdown-item:hover {
    color: #AF7D43;
}

 

.dropdown-item {
    white-space: normal;
    border-bottom: 1px solid #eee;
	padding: 10px;
}

    .dropdown-item:active {
 
        background-color: #af7d43;
			color:#fff !important;
    }

.viewnws {
    background: #CD853F;
  padding: 5px 0;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 35px;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 14px;
  transition: background-color 0.3s;
  margin-bottom: 5px;
  line-height: 13px;
}


.a2a_s_email, .a2a_s_print{
	background-color: #573011 !important;
}

.bg-body-tertiary {
   background-color: #fff !important;
  padding: 0 0 10px 0 !important;
  border-bottom: 1px solid #f4ede4;
  font-size: 14px;
}



 

h2 a{
	color: #000 !important;
}

.time-story{
	margin-bottom: 50px;
}

.recent-posts{
	margin-top: 35px;
}


.content-inner .news-section {
	padding:  0;
}


.search-tabs{
	margin-top: 40px;
}
.search-tabs .nav-tabs{
 	border: 0px solid;
}


.search-adv .nav-tabs .nav-link {
background: #f8f2e9;
  margin-right: 10px;
  text-align: center;
  padding: 5px 10px !important;
  align-items: center;
  gap: 10px;
  color: #000;
  border: 1px solid #e9decf;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 400;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background: #734001 !important;
  color: #fff !important;
}

.search-adv .search-filter {
  background: #fff;
   margin-bottom: 18px;
   padding: 25px;
  border-radius: 0;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
	border: 1px solid #eee;
}
.search-adv .btn {
  padding: .75rem .75rem;
	  border-radius: 0;
	background: #a87b5c !important;

}


.search-adv .card {
  border-radius: 0;
  padding: 15px;
	margin-bottom: 30px;  box-shadow: 0 5px 5px rgba(0,0,0,0.05);
	border: 1px solid #eee;
}

.search-adv .text-primary {
  color: #CD853F !important;
}


.form-control, .form-select {
  padding: .75rem .75rem;
}



/* TV Interview  */

    

        .view-channel {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            color: #f8f9ff;
            text-decoration: none;
            padding: 8px 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.02);
            transition: all 0.2s ease;
        }

        .view-channel:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .view-channel i {
            font-size: 14px;
        }

        /* FEATURED SECTION LEFT */
        .featured-card {
            background: var(--bg-card);
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            flex-direction: column;
            min-height: 360px;
        }

        @media (min-width: 1200px) {
            .featured-card {
               min-height: 370px;
            }
        }

        .featured-thumb-wrapper {
            position: relative;
            flex: 1 1 auto;
            overflow: hidden;
        }

        .featured-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.03);
            transition: transform 0.5s ease;
        }

        .featured-card:hover .featured-thumb {
            transform: scale(1.07);
        }

        .gradient-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.85) 0,
                rgba(0, 0, 0, 0.55) 40%,
                rgba(0, 0, 0, 0.1) 80%
            );
        }

        .play-circle {
            position: absolute;
            top: 24px;
            left: 50%;
            transform: translateX(-50%);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(5, 5, 5, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
        }

        .play-circle-inner {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--accent-red);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
        }

        .featured-meta {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 24px 24px 18px;
        }

        .badge-tag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #000;
        }

        .badge-travel {
            background: var(--badge-travel);
        }

        .featured-title {
            margin-top: 14px;
            font-size: 23px;
 			color: #fff;
            max-width: 90%;
        }

        .featured-sub {
            margin-top: 6px;
            font-size: 18px;
         }

        .featured-info {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 14px;
            color: var(--text-muted);
            font-size: 13px;
        }

        .featured-info span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .featured-info span i {
            font-size: 13px;
            opacity: 0.7;
        }

        /* RIGHT SIDE LIST */
        .side-list-wrapper {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .side-card {
            display: flex;
            background: var(--bg-card-soft);
            border-radius: 0;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            min-height: 115px;
            transition: transform 0.2s ease, box-shadow 0.2s ease,
                background 0.2s ease;
        }

        .side-card:hover {
            transition-timing-function: ease-in-out;
            background: rgba(248, 242, 233, 0.5);
         }

        .side-thumb-wrapper {
            width: 25%px;
  position: relative;
  overflow: hidden;
  min-width: 160px;
  max-width: 160px;
         }

        .side-thumb {
          display: block;
  transform: scale(1.03);
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
        }

        .side-card:hover .side-thumb {
                    transition: transform 0.5s ease;

    transform: scale(1.1);
        }

        .side-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.65);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .side-play-inner {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--accent-red);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 13px;
        }

        .side-body {
            flex: 1 1 auto;
            padding: 14px 16px 12px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .badge-pill-small {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 3px 10px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #000;
            margin-bottom: 6px;
        }

        .badge-parasailing {
            background: var(--badge-parasailing);
            color: #fff;
        }

        .badge-skiing {
            background: var(--badge-skiing);
        }

        .badge-adventure {
            background: var(--badge-adventure);
            color: #fff;
        }

        .side-title {
            font-size: 18px;
              margin-bottom: 8px;
        }

        .side-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 12px;
            color: var(--text-muted);
            align-items: center;
        }

        .side-meta span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .side-meta span i {
            font-size: 12px;
            opacity: 0.7;
        }

        /* Small tweaks for mobile */
        @media (max-width: 767.98px) {
            .side-card {
                min-height: 110px;
            }
            .side-thumb-wrapper {
                min-width: 120px;
            }
        }






@media (max-width: 575.98px) {

    .hiddenspan{
        display:none;
    }
    .content-wrapper {
        display: block;
    }
.content-inner {
  margin: 50px 0;
}	
.content-inner .social-share {
position: relative;
top: 0;
width: 100%;
border-right: 0px solid #e0e0e0;
padding: 0;
text-align: start;
max-height: inherit;
}
	
.a2a_default_style {
margin: 0 0 20px 0 !important;
}
.social-icons {
align-items: start;
}	
	
.article {
max-width: 100%;
}
	
.featured-interview {
grid-template-columns: 1fr;
}
	
.related-interviews {
grid-template-columns: repeat(1, 1fr);
}
	
.channels-grid {
grid-template-columns: repeat(2, 1fr);
}
	
.most-read-grid {
grid-template-columns: repeat(1, 1fr);
}
.world-grid {
grid-template-columns: repeat(1, 1fr);
}	

.footer-content {
flex-direction: column;
}
	
.footer-links {
justify-content: flex-start;
flex-wrap: wrap;
}
	
.footer-logo {
flex-direction: column;
text-align: left;
gap: 10px;
}
	
.newsletter-input {
width: 60%;
}	
	
.news-section .container-fluid {
padding-right: calc(var(--bs-gutter-x) * .5);
padding-left: calc(var(--bs-gutter-x) * .5);
}
	
.news-ticker-box {
width: 65%;
}
	
img{
height: auto!important;
}
 
.top-nav {
font-size: 13px;
}
    .search-btn, .accessibility-btn {
        padding: 5px 5px 5px 5px;
    }
 

.mega-menu a {
height: auto;
}	
	
.news-section .news-card-playback {
margin-bottom: 30px;
}
.news-section {
padding: 30px 0 0;
}
.news-ticker-box {
width: 60% !important;
}
.most-read-card .card-image {
height: auto;
}
}


@media (min-width: 576px) and (max-width: 767.98px) { 

.content-wrapper {
display: block;
}
.content-inner {
margin: 50px 0;
}		
.content-inner .social-share {
position: relative;
top: 0;
width: 100%;
border-right: 0px solid #e0e0e0;
padding: 0;
text-align: start;
max-height: inherit;
}
	
.a2a_default_style {
margin: 0 0 20px 0 !important;
}
.social-icons {
align-items: start;
}	
	
.article {
max-width: 100%;
}
	
.featured-interview {
grid-template-columns: 1fr;
}
	
.related-interviews {
grid-template-columns: repeat(1, 1fr);
}
	
.channels-grid {
grid-template-columns: repeat(2, 1fr);
}
	
.most-read-grid {
grid-template-columns: repeat(1, 1fr);
}
.world-grid {
grid-template-columns: repeat(1, 1fr);
}	

.footer-content {
flex-direction: column;
}
	
.footer-links {
justify-content: flex-start;
flex-wrap: wrap;
}
	
.footer-logo {
flex-direction: column;
text-align: center;
gap: 10px;
} 
	
.newsletter-input {
width: 60%;
}	
	
 
	
.news-ticker-box {
width: 65%;
}
	
img{
height: auto !important;
}
 
.top-nav {
font-size: 14px;
}
.logo-section .container {
flex-direction: row;
gap: 15px;
}

.mega-menu a {
height: auto;
}	
	
.news-section .news-card-playback {
margin-bottom: 30px;
}
.news-section {
padding: 30px 0 0;
}
.news-ticker-box {
width: 75% !important;
}	
.most-read-card .card-image {
height: auto;
}	
	
}

@media (min-width: 768px) and (max-width: 991.98px) { 

.content-wrapper {
display: block;
}
.content-inner {
margin: 50px 0;
}		
.content-inner .social-share {
position: relative;
top: 0;
width: 100%;
border-right: 0px solid #e0e0e0;
padding: 0;
text-align: start;
max-height: inherit;
}
	
.a2a_default_style {
margin: 0 0 20px 0 !important;
}
.social-icons {
align-items: start;
}	
	
.article {
max-width: 100%;
}
	
.featured-interview {
grid-template-columns: 1fr;
}
	
.related-interviews {
grid-template-columns: repeat(1, 1fr);
}
	
.channels-grid {
grid-template-columns: repeat(2, 1fr);
}
	
.most-read-grid {
grid-template-columns: repeat(1, 1fr);
}
.world-grid {
grid-template-columns: repeat(1, 1fr);
}	

.footer-content {
flex-direction: column;
}
	
.footer-links {
justify-content: flex-start;
flex-wrap: wrap;
}
	
.footer-logo {
flex-direction: column;
text-align: center;
gap: 10px;
}
	
.newsletter-input {
width: 60%;
}	
	
 
	
.news-ticker-box {
width: 65%;
}
	
img{
height: auto !important;
}
 
.top-nav {
font-size: 14px;
}
.logo-section .container {
flex-direction: row;
gap: 15px;
}

.mega-menu a {
height: auto;
}	
	
.news-section .news-card-playback {
margin-bottom: 30px;
}
.news-section {
padding: 30px 0 0;
}
.news-ticker-box {
width: 75% !important;
}	
.most-read-card .card-image {
height: auto;
}	
	
}

@media (min-width: 992px) and (max-width: 1199.98px) { 

.nav-link {
padding: 13px 7px 13px 7px !important;
font-size: 15px;
}
}

@media (min-width: 1200px) { 
 
}



/* Print styles */
@media print {
    .pagination {
        display: none;
    }
    
    .article-image {
        max-width: 200px;
        height: auto;
    }

    .ticker-container {
        display: none;
    }
 
    
    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
 
    .ticker-container {
        display: none;
    }
    
    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}


.article-body p.author {
    margin-bottom: 0px;
}
.card-body .card-title {
    border-color: #e6eaed;
    min-height: 100px;
}
.featured-thumb {
  min-height: 370px;
}



/*. new style. */
         .news-section3 {
            background-color: #fff;
            padding: 80px 0;
         }

        .news-grid-container3 {
            display: grid;
            gap: 20px;
            grid-template-columns: 1fr; 
        }

        @media (min-width: 768px) {
            .news-grid-container3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .news-grid-container3 {
                /* 4 أعمدة لتطابق التصميم: الكبيرة تأخذ 2، وكل صغيرة تأخذ 1 */
                grid-template-columns: repeat(4, 1fr);
                grid-template-rows: repeat(2, 280px); 
            }
        }

        /* البطاقة: زوايا حادة وثابتة */
        .news-card3 {
            position: relative;
            border-radius: 0; 
            overflow: hidden;
            text-decoration: none;
            display: block;
            background-color: #000;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: box-shadow 0.4s ease;
        }

        @media (min-width: 992px) {
            .large-card3 { grid-column: span 2; grid-row: span 2; }
            .small-card3 { grid-column: span 1; grid-row: span 1; }
        }

        /* 1. حركة الصورة */
        .news-card3 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .news-card3:hover img {
            transform: scale(1) rotate(-1deg);
        }

        /* الغطاء المتدرج الأسود (دائماً موجود لضمان وضوح النص) */
        .card-overlay3 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
background: #140b06;
background: linear-gradient(180deg, rgba(20, 11, 6, 0) 0%, rgba(20, 11, 6, 0.75) 50%, rgba(20, 11, 6, 1) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            transition: background 0.4s ease;
        }

        .news-card3:hover .card-overlay3 {
            background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.1) 100%);
        }

        /* ========================================= */
        /* النصوص: ظاهرة وثابتة دائماً */
        /* ========================================= */
        
        .card-content3 {
            position: relative;
            z-index: 2;
            padding-right: 50px; /* مسافة للزر لكي لا يغطي النص */
        }

        .news-date3 {
            color: #d88645;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 8px;
            display: block;
        }

        /* العنوان وتأثير التسطير (Underline Sweep) */
        .news-title3 {
            color: #ffffff;
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 10px 0;
            line-height: 1.4;
            display: inline; /* لجعل الخط على حجم النص فقط */
            position: relative;
            /* خلفية الخط البرتقالي مخفية في البداية (عرض صفر) */
            background-image: linear-gradient(#d88645, #d88645);
            background-repeat: no-repeat;
            background-position: left bottom;
            background-size: 0% 2px;
            transition: background-size 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .large-card3 .news-title3 {
            font-size: 1.6rem;
        }

        /* عند الهوفر يكتمل رسم الخط وتزيد إضاءة النص */
        .news-card3:hover .news-title3 {
            background-size: 100% 2px;
            text-shadow: 0 0 10px rgba(255,255,255,0.3);
        }

        /* الوصف */
        .news-desc3 {
            color: #aaaaaa;
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.4s ease;
        }

        .news-card3:hover .news-desc3 {
            color: #ffffff; /* يصبح ناصع البياض عند الهوفر */
        }

        /* ========================================= */
        /* الزر الدائري وحركة انطلاق السهم */
        /* ========================================= */
        
        .news-arrow-btn3 {
            position: absolute;
            bottom: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #000;
            font-size: 1.2rem;
            overflow: hidden; /* ضروري لقص حركة السهم */
            transition: all 0.4s ease;
            z-index: 3;
        }

        .news-arrow-icon3 {
            display: inline-block;
        }

        /* عند الهوفر يتغير لون الزر وتحدث حركة السهم */
        .news-card3:hover .news-arrow-btn3 {
            background-color: #d88645;
            color: #ffffff;
            transform: scale(1.1); /* يكبر قليلاً */
        }

        .news-card3:hover .news-arrow-icon3 {
            animation: shootArrow3 0.6s ease forwards;
        }

        /* أنيميشن انطلاق السهم يميناً وعودته من اليسار */
        @keyframes shootArrow3 {
            0% { transform: translateX(0); }
            40% { transform: translateX(30px); opacity: 0; }
            41% { transform: translateX(-30px); opacity: 0; }
            100% { transform: translateX(0); opacity: 1; }
        }

        .news-card3:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

       
 

        /* فئة لتطبيق أنيميشن الظهور */
        .fade-in-text1 {
            opacity: 1 !important;
        }

        /* تنسيق صورة الشخص (اختياري) */
        .person-image1 {
            max-width: 100%;
            border-radius: 10px;
            /* أنيميشن دخول للصورة أيضاً */
            animation: fadeInRight;
            animation-duration: 1.2s;
            animation-delay: 0.3s; /* تأخير قليل */
        }
         .short-videos-section2 {
            background-color: #fff;
            padding: 70px 0;
            overflow: hidden;
          }



.short-videos-section2 .swiper-slide img {
  width: 100%;
  height: 450px;
  max-height:  100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

            .short-videos-section2 .swiper-slide {
                height: 400px;
                opacity: 1;
            }


.short-videos-section2  .swiper-pagination-bullet-active {
  background-color: #fff !important;
 }
:host {
--swiper-theme-color: #fff;
--swiper-theme-color: #fff;
}

        .section-header2 {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 35px;
            border-bottom: 1px solid #cec1b8;
            padding-bottom: 15px;
        }

        .section-title2 {
            color: #000;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
            position: relative;
        }

        .section-title2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -16px;
            width: 100%;
            height: 4px;
            background-color: #ba8247;
        }

        .swiper-nav-buttons2 button {
            background: transparent;
            border: 1px solid #666;
            color: white;
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

        .swiper-nav-buttons2 button:hover {
            background-color: #333;
            border-color: #fff;
        }

        .video-slide2 {
            width: 350px;
            height: 450px;
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }

        .video-slide2 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
             transition: filter 0.5s ease, transform 0.5s ease;
        }

        .video-slide2:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .video-overlay2 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.9) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .video-slide2:hover .video-overlay2 {
            opacity: 1;
        }

        .play-btn-box2 {
            width: 60px;
            height: 60px;
            border: 2px solid white;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: scale(0.5);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .video-slide2:hover .play-btn-box2 {
            transform: scale(1);
        }

        .play-triangle2 {
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid white;
            margin-left: 5px;
        }

        .video-info2 {
            position: absolute;
            bottom: 30px;
            left: 20px;
            right: 20px;
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.4s ease, opacity 0.4s ease;
            transition-delay: 0.1s;
        }

        .video-slide2:hover .video-info2 {
            transform: translateY(0);
            opacity: 1;
        }

        .badge-event2 {
            background-color: #ffd700;
            color: #000;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 2px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .video-title2 {
            color: white;
            font-size: 1.2rem;
            font-weight: 800;
            text-transform: uppercase;
            line-height: 1.2;
            margin: 0;
        }

        .view-more-btn2 {
            background-color: white;
            color: #000;
            border-radius: 50px;
            padding: 10px 30px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: background-color 0.3s ease;
            margin-top: 40px;
			border: 1px solid #ddd;
        }
        
        .view-more-btn2:hover {
            background-color: #e0e0e0;
            color: #000;
        }

        .view-more-btn2 span {
            margin-left: 10px;
            font-size: 1.2rem;
        }



 .swiper-pagination-bullet-active {
  background: #fff !important;
 }
.swiper-button-next, .swiper-button-prev {
  color: #fff !important;
}
.swiper-button-next svg, .swiper-button-prev svg {
  color: #fff !important;
}
.swiper-button-next, .swiper-button-prev {
    color: #fff !important;

}
 

/* Subject Image Architecture */
.subject-image-wrapper {
    display: flex;
    align-items: flex-end; /* Locks the image perfectly to the bottom edge */
    justify-content: center;
    padding-top: 2rem;
}

.subject-image {
    max-width: 100%;
    max-height: 480px; /* Controls the maximum vertical rhythm of the banner */
    object-fit: contain;
    display: block;
    z-index: 1;
}

 

    /* ─── CSS Variables ─────────────────────────────── */
    :root {
       --bg-card:      #f7f4f1;
      --accent:       #c87c2a;
      --text-title:   #1a1a1a;
      --text-sub:     #555555;
       --card-shadow-hover: 0 8px 28px rgba(200,124,42,0.18);
      --transition:   0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

  

    /* ─── Section Header ────────────────────────────── */


    .section-title {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--text-title);
      margin-bottom: 10px;
      letter-spacing: -0.3px;
    }

    .section-divider {
      height: 3px;
      background: #f7f4f1;
      border: none;
       opacity: 1;
      margin: 0;
    }

    /* ─── Card ──────────────────────────────────────── */
    .media-card {
      background: var(--bg-card);
        padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
      position: relative;
      overflow: hidden;
    }

    /* Shine sweep on hover */
    .media-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg,
        transparent 20%,
        rgba(255,255,255,0.45) 50%,
        transparent 80%);
      transform: translateX(-100%);
      transition: transform 0.55s ease;
      pointer-events: none;
    }

    .media-card:hover::before {
      transform: translateX(100%);
    }

    /* Left accent bar */
    .media-card::after {
      content: '';
      position: absolute;
      left: 0; top: 12px; bottom: 12px;
      width: 3px;
      background: var(--accent);
       transform: scaleY(0);
      transform-origin: center;
      transition: transform var(--transition);
    }

    .media-card:hover {
      transform: translateY(-3px) scale(1.012);
       background: #ece9e2;
    }

    .media-card:hover::after {
      transform: scaleY(1);
    }

    /* ─── Card Text ─────────────────────────────────── */
    .card-text-group {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .card-m {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-title);
      margin: 0;
      line-height: 1.3;
      transition: color 0.25s ease;
    }

    .media-card:hover .card-m {
      color: var(--accent);
    }
		

    .card-subtitle {
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-sub);
      margin: 0;
    }

    /* ─── Icon ──────────────────────────────────────── */
    .card-icon-wrap {
      flex-shrink: 0;
      margin-left: 16px;
      position: relative;
    }

    .card-icon-wrap svg {
      width: 64px;
      height: 64px;
      transition: transform var(--transition), filter 0.3s ease;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
    }

    .media-card:hover .card-icon-wrap svg {
      transform: scale(1.12) rotate(-4deg);
      filter: drop-shadow(0 4px 10px rgba(200,124,42,0.35));
    }

    .media-card .card-icon-wrap img {
	  width: 50px;
    }


    /* ─── Sound bars animation (on hover) ──────────── */
    .bar {
      transform-origin: bottom center;
    }

    .media-card:hover .bar-1 { animation: pulse-bar 0.65s ease-in-out infinite alternate; }
    .media-card:hover .bar-2 { animation: pulse-bar 0.65s 0.1s ease-in-out infinite alternate; }
    .media-card:hover .bar-3 { animation: pulse-bar 0.65s 0.2s ease-in-out infinite alternate; }
    .media-card:hover .bar-4 { animation: pulse-bar 0.65s 0.3s ease-in-out infinite alternate; }

    @keyframes pulse-bar {
      0%   { transform: scaleY(0.55); }
      100% { transform: scaleY(1.2);  }
    }

    /* ─── Grid ──────────────────────────────────────── */
    .media-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    /* ─── Staggered entrance ────────────────────────── */
    .media-card {
      opacity: 0;
      animation: cardIn 0.5s ease forwards;
    }
    .media-card:nth-child(1) { animation-delay: 0.05s; }
    .media-card:nth-child(2) { animation-delay: 0.12s; }
    .media-card:nth-child(3) { animation-delay: 0.19s; }
    .media-card:nth-child(4) { animation-delay: 0.26s; }
    .media-card:nth-child(5) { animation-delay: 0.33s; }
    .media-card:nth-child(6) { animation-delay: 0.40s; }

    @keyframes cardIn {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── Responsive ────────────────────────────────── */
    @media (max-width: 640px) {
      .media-grid {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: 1.4rem;
      }

      .card-icon-wrap svg {
        width: 52px;
        height: 52px;
      }

      .media-card {
        padding: 14px 16px;
      }
    }

    @media (min-width: 641px) and (max-width: 900px) {
      .card-icon-wrap svg {
        width: 56px;
        height: 56px;
      }
    }
	
/* Section */
.quote-hero{
	background: url("../images/hero-bg.jpg") left top no-repeat;
	background-size: cover;
position:relative;
overflow:hidden;
padding:0 0;
max-height:420px;
 }

 
/* Quote Card */
.quote-box{
background: rgba(230,217,208,0.65);
padding:40px 40px;
position:relative;
max-width:740px;
box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.quote-text{
font-family:"Playfair Display", serif;
font-size: 23px;
line-height:1.7;
color:#111;
margin:0;
}

.quote-open{
font-family:"Playfair Display", serif;
font-size:65px;
font-weight:700;
line-height:0;
margin-right:12px;
vertical-align:middle;
display:inline-block;margin:20px 10px 0 0;

}

.quote-close{
font-family:"Playfair Display", serif;
font-size:65px;
font-weight:700;
line-height:0;
vertical-align:middle;
display:inline-block;
margin:20px 0 0 10px;
}

/* Portrait */
.leader-image{
max-width: 100%;
  width: 70%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
  margin-top: 30px;
}

/* Responsive */
@media(max-width:992px){

.quote-box{
padding:30px;
margin: 30px 0;
}

.quote-text{
font-size:22px;
}

.quote-open,
.quote-close{
font-size:48px;
}

.leader-image{
max-width:340px;
display:block;
margin:auto;
}

}

