/* ========================================
   ROLLA MAGAZINE WEBSITE - PURE CSS
   ======================================== */

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Variables - Easy to change fonts from here */
:root {
    --font-heading: 'Merriweather', serif;
    --font-body: 'Source Sans Pro', sans-serif;
    --font-accent: 'Source Sans Pro', sans-serif;
    --border-color: #000000;
    --text-primary: #000000;
    --text-secondary: #666666;
    --bg-white: #ffffff;
    --bg-gray: #e5e5e5;
    --border-secondary: #767676;
}
/* iOS Fix */
button, a {
    -webkit-tap-highlight-color: transparent;
}
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');


body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    line-height: 1.6;
    color: var(--text-primary);
}

img {
    width: 100%;
    height: auto;
    display: block;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}
h1, h2,h3,h4,h5,h6 .banner-title, .chiceasy-title {
  text-wrap: pretty;
}

/* ========== MAIN CONTAINER WITH BORDER ========== */
.main-container {
    max-width: 95%;  /*1350px;*/
    min-height: 100vh;
    padding: 30px;   
    border: 2px solid var(--border-color);
    margin: 0.5em auto;
}

/* ========== HEADER STYLES ========== */
.header {
    border-bottom: 2px solid var(--border-color);
    padding: 0 0 1.5rem 0;
    margin-bottom: 10px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.logo a {
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.7;
}

/* Navigation */
.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    text-transform: capitalize;
    transition: opacity 0.3s ease;
    font-size: 18px;
    position: relative;
}

.nav-menu li a:hover {
    opacity: 0.7;
}
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}
/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icons a,
.header-icons button {
    background: none;
    border: none;
    color: #000 !important;
    cursor: pointer;
    transition: opacity 0.3s ease;
    padding: 0;
}

.header-icons a:hover,
.header-icons button:hover {
    opacity: 0.7;
}

.header-icons svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-menu-btn {
    display: block;
}
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* search input hidden initially */
.search-box {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  
  width: 0;
  opacity: 0;
  padding: 8px 0;
  border: 1px solid #204c7e;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: #fff;
}

/* ACTIVE */
.search-wrapper.active .search-box {
  width: 220px;
  opacity: 1;
  padding: 8px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
/* icon button */
.search-icon {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* ── Search section labels ─────────────────────────────────────────── */
.search-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    padding: 10px 16px 4px;
    border-top: 1px solid #f0f0f0;
}

.search-section-label:first-child {
    border-top: none;
    padding-top: 6px;
}

/* ── Thumb wrapper (needed for video badge overlay) ────────────────── */
.search-result-thumb-wrap {
    position: relative;
    flex-shrink: 0;
}

/* ── Video play badge ──────────────────────────────────────────────── */
.search-result-video-badge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border-radius: inherit;
    pointer-events: none;
}

/* ── Author / meta spans ───────────────────────────────────────────── */
.search-result-meta span + span::before {
    content: "·";
    margin: 0 4px;
    color: #ccc;
}
/* ========== HERO SECTION ========== */
 /*.hero-section {
    border-bottom: 2px solid var(--border-color);
} */
.main-logo{width: 65%;}
.medium-logo{width:60%}

.hero-background {
    background-color: var(--bg-gray);
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.hero-tagline {
    padding: 0.7rem 1rem;
    text-align: center;
}

.hero-tagline p {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

/* ========== BANNER SECTION ========== */
.banner-section {
    border-bottom: 2px solid var(--border-color);
}

.banner-content {
    padding: 1rem 0rem 3rem 0rem;
    margin: 0 auto;
    max-width: 920px;
    text-align: center;
}

.banner-title {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 600;  
    line-height: 36px;
    padding-bottom: 15px; 
}

.banner-description {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0px;
    text-align: center;

}

/* ========== READ MORE BUTTON ========== */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    padding:0.8rem 1rem ;
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--text-primary);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    width: auto;
}
.btn-read-more p{
    margin-right: 25px;
}
.btn-read-more:hover {
    background-color: var(--text-primary);
    color: var(--bg-white);
}

.btn-read-more svg {
    width: 1rem;
    height: 1rem;
}

/* ========== NEWS SECTIONS ========== */
.news-section {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1em;
}

.section-title {
    padding: 1rem 0;
    text-align: center;
}

.section-title h2 {
    font-family: var(--font-accent);    
    font-weight: 400;
    font-style: Regular;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
}

.news-grid {
    padding: 0 0 3rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    column-gap: 0; /* Remove gap */
}

/* News Item (Fashion Style - content below image) */
.news-item {
    display: flex;
    flex-direction: column;
}

.news-item:last-child {
    border-right: none;
    
}
.news-item-title {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 1rem 0;
    line-height: 1.3;
}
.author-section {
    margin-bottom: 8px;
    border-left: 3px solid #000;
}

/* Subtle editorial label */
.author-label {
    font-size: 14px;
    letter-spacing: 1.2px;
    color: #888;
    padding-left: 10px;
}

/* Elegant author highlight */
.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    margin-left: 4px;
    padding-bottom: 1px;
    transition: opacity 0.2s ease;
}
.arts{
    color: #fff !important;
}
/* Clean hover */
.author-name:hover {
  opacity: 0.6;
}

.news-item-date {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-family: var(--font-heading);
}
.btn-wrapper{
    display: block;
    margin-top: auto;
}
.btn-wrapper-special-coumn{
    position: absolute;
    bottom: 0;
    left: 10px;
}
/* News Item Overlay Style (Arts & Culture - text on image) */
.news-item-overlay {
    position: relative;
    overflow: hidden;
}
.news-item-inner{
    position: relative;
}
.overlay-content {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 1.4rem;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent); */
    background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, #080808 100%);

}
.overlay-content:last-child {
     left: 0;
}
.news-item-overlay img{
    min-height: 523px;
    object-fit: cover;
}
.cultured-item-overlay img{
    min-height: 340px;
    object-fit: cover;
}
.news-item-overlay::after {
    content: '';
    position: absolute;
    right: 0em;
    top: 50px; /* Start position */
    bottom: 50px; /* End position */
    width: 1px;
    background-color: #252525;
    z-index: 10; /* Make sure it appears above the image */
}

.news-item-overlay:last-child::after,
.news-item-overlay:nth-child(3n)::after {
    display: none;
}
.overlay-title {
    color: var(--bg-white);
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.fashion-sec-img{
    height: 327px;
    object-fit: cover;
}
.btn-read-more-white {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.btn-read-more-white:hover {
    background-color: var(--bg-white);
    color: var(--text-primary);
}

/* ── CHICeasy special card ── */
.chiceasy-overlay {
    position: relative;
    color: #000;
    /* background: rgba(217, 217, 217, 1); */
    padding: 4rem 0 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.chiceasy-bnr-img img{
    height: 327px;
    object-fit: cover;
}

.author-avatar-wrap {
    position: absolute;
    bottom: 70%;
    left: 50%;
    transform: translateX(-50%);
    width: 119px;
    height: 119px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
}

.author-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chiceasy-label {
    margin-top: 30px;
    font-size: 17px;
    color: #000;
    font-weight: 400;
}

.chiceasy-author {
    font-weight: 600;
    color: var(--text-secondary);
}

.chiceasy-title {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    line-height: 30px;
    padding-top: 20px;
    text-align: left;
}
.chiceasy-item-date {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-family: var(--font-heading);
    text-align: left !important;
    width: 100%;
}
/* Cultured Special column */
.cultured-overlay {
    position: static;
    padding: 65px 10px;
    width: 100%;
    color: #000;
    /* background: rgba(217, 217, 217, 1); */
    background-color: #fff;
    min-height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: normal;
}
.cultured-bnr-img{
    min-height: 327px !important;
}

.author-avatar-cultured {
    position: absolute;
    bottom: 70%;
    left: 50%;
    transform: translateX(-50%);
    width: 119px;
    height: 119px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
}

.author-avatar-cultured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: auto !important;
}

.cultured-label {
    margin-top: 5px;
    font-size: 17px;
    color: #000;
    font-weight: 400;
}

.cultured-author {
    font-weight: 600;
    color: var(--text-secondary);
}

.cultured-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    text-wrap: balance;
    line-height: 25px;
    padding-top: 10px;
    text-align: left;
    padding-left: 10px;
}
.cultured-item-date {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-family: var(--font-heading);
    text-align: left !important;
    width: 100%;
}
.overlay-content-cultured {
    position: relative;
}
.overlay-cultured:last-child {
     left: 0;
}
/* ========== VIDEOS SECTION ========== */
.video-section{
  padding: 0 0 3rem 0;
}

/* ========== PHOTOGRAPHY SECTION ========== */
.photography-slider {
    /* padding: 0 1.5rem 3rem; */
    position: relative;
}

.photography-slides-container {
    position: relative;
}

.photography-slide {
    position: relative;
    overflow: hidden;
    display: none; /* Hidden by default, shown by JavaScript */
}

.photography-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.photography-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0rem 3.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--bg-white);
}

.photography-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: bold;
    color: var(--bg-white);
}

.photography-description {
    font-size: 0.875rem;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--bg-white);
}

.photography-arrow {
    display: inline-block;
    color: var(--bg-white);
}

.photography-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-primary);
}

.slider-arrow-left {
    left: 1.5rem;
}

.slider-arrow-right {
    right: 1.5rem;
}

/* About Us */
.what-rolla-section {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    background-image: url('../images/raw-mango-fashion-week.png');
    background-size: cover;
    background-position: 44% 0%;
    background-repeat: no-repeat;
    position: relative;    
}

/* .what-rolla-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, rgba(217, 217, 217, 0) 1.9%, #737373 100%);
    pointer-events: none;
} */

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    position: relative;
    z-index: 1;
}

/* Left Side - Grey Overlay with Text */
.text-side {
    padding: 10px 119px 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.text-side h2 {
    font-family: var(--font-accent);    
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    padding: 5px 0;    
}

.text-side p {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0px;
    /* text-indent: 120px; */
}
.section-divider {
    width: 100%;
    padding: 2em 0;
    border-bottom: 2px solid var(--border-color);
    margin: 0 auto;
}

/* Who Are We Section - Mobile First */
.who-are-we-section {
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 3em;
    border-bottom: 2px solid var(--border-color);
}

.section-title {
    font-family: var(--font-accent);
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
}

.who-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Image Side */
.who-image-side {
    width: 100%;
    overflow: hidden;
}

.who-image-side img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Text Side */
.who-text-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founder-name {
    font-family: var(--font-accent);
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    margin-bottom: 10px;
}

.founder-bio {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0px;
    margin-bottom: 15px;
}
/* Team Section - Mobile First */
.team-section {
    width: 100%;
    background: #EEEEEE;
    padding: 40px 20px;
}

.team-title {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1em;
    margin-bottom: 40px;
}

.team-members-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 2px solid var(--border-color);
}

.team-member:last-child {
    border-bottom: none;
}

/* Member Content */
.member-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.member-name {
    font-family: var(--font-accent);
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
}

.member-description {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0px;
}

/* Member Image */
.member-image {
    width: 100%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.email-subscribe {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.subscribe-container {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.subscribe-container h2 {
    font-family: var(--font-accent);
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    margin-bottom: 25px;
}

/* form layout */
.subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* input */
.subscribe-form input {
    width: 100%;
    flex: 1;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    background-color: #f5f5f5;
}

/* button */
.subscribe-form button {
    width: 100%;
    padding: 14px 26px;
    font-size: 16px;
    border: none;
    background: #000;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.subscribe-form button:hover {
    background: #333;
}

/* ========== FOOTER SECTION ========== */
.footer {
    padding: 3rem 1.5rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--text-primary);
    color: var(--bg-white);
}

.social-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.footer-tagline {
    font-size: 0.875rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-nav a {
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

/* ── Search wrapper ─────────────────────────────────── */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box {
    width: 0;
    opacity: 0;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: #f1f5f9;
    font-size: 0.875rem;
    color: #1e293b;
    transition: width 0.35s cubic-bezier(.4,0,.2,1),
                opacity 0.25s ease,
                padding 0.3s ease;
    outline: none;
}

.search-wrapper.active .search-box {
    width: 220px;
    opacity: 1;
    padding: 0.5rem 1rem;
    border: 1.5px solid #cbd5e1;
}

.search-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: #475569;
    padding: 6px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.search-icon svg { width: 20px; height: 20px; }

/* ── Dropdown ───────────────────────────────────────── */
.search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 380px;
    max-height: 480px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    display: none;
    flex-direction: column;
    z-index: 9999;
}

.search-dropdown.open { display: flex; }

/* Loading dots */
.search-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 24px;
}
.search-loading span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #94a3b8;
    animation: searchBounce 1s ease-in-out infinite;
}
.search-loading span:nth-child(2) { animation-delay: .15s; }
.search-loading span:nth-child(3) { animation-delay: .3s;  }

@keyframes searchBounce {
    0%, 80%, 100% { transform: scale(0.7); opacity: .5; }
    40%            { transform: scale(1);   opacity: 1;  }
}

/* Result items */
.search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f1f5f9;
    transition: background .15s;
}
.search-result-item:hover { background: #f8fafc; }

.search-result-thumb {
    width: 60px; height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #e2e8f0;
}
.search-result-thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}
.search-result-thumb--placeholder svg { width: 28px; height: 28px; }

.search-result-body { flex: 1; min-width: 0; }

.search-result-title {
    font-size: .875rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-title mark {
    background: #fef08a;
    border-radius: 2px;
    padding: 0 2px;
    color: inherit;
}

.search-result-desc {
    font-size: .78rem;
    color: #64748b;
    margin: 0 0 6px;
    line-height: 1.4;
}

.search-result-meta {
    display: flex;
    gap: 10px;
    font-size: .72rem;
    color: #94a3b8;
}

.search-empty {
    padding: 24px 16px;
    text-align: center;
    color: #64748b;
    font-size: .875rem;
}

.search-view-all {
    display: block;
    padding: 12px 16px;
    text-align: center;
    font-size: .8rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    border-top: 1px solid #e2e8f0;
}
.search-view-all:hover { background: #eff6ff; }

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .main-logo{width: 28%;}
    .main-container {
        margin: 2.5% auto;
    }
    
    .header {
        padding: 0 0 1.5rem
    }
    
    .logo {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 7rem;
    }
    
    .hero-tagline p {
        font-size: 20px;
    }
    
    .banner-content {
         padding: 1rem 0rem 3rem 0rem;
    }
    
    .banner-title {
        font-size: 3.5rem;
    }
    
    .banner-description {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 80px;
    }
    .news-section {
        padding-bottom: 3em;
    }
    .news-grid {
        padding: 0 0 3rem 0;
        grid-template-columns: repeat(2, 1fr);
        /* gap: 2.5rem; */
    }
    .news-item { 
        border-right: 1px solid #252525;
        padding-right: 1rem; /* Add padding instead of gap */
        padding-left: 1rem;
    }
    .news-item-title,
    .overlay-title {
        font-size: 1.4rem;
    }
    .news-item-overlay::after {
        content: '';
        position: absolute;
        right: 1em;
        top: 50px; /* Start position */
        bottom: 50px; /* End position */
        width: 1px;
        background-color: #252525;
        z-index: 10; /* Make sure it appears above the image */
    }
    .chiceasy-label {
        margin-top: 10px;
    }
    .author-avatar-wrap{
        bottom: 75%;
    }
    .overlay-content-cultured {
        width: 100%;
        position: relative;
        bottom: 0;

    }
    .cultured-overlay {
        position: absolute;
        width: 100%;
        color: #000;
        padding: 4rem 4rem 0 4rem; 
    }
    .chiceasy-title {
        line-height: 25px;
        padding-top: 10px;
    }
    .chiceasy-item-date {
        font-size: 0.95rem;
        color: var(--text-secondary);
        margin-top: 1rem;
        font-family: var(--font-heading);
        text-align: left !important;
        width: 100%;
    }
    .news-item-overlay {
        padding-right: 2em;
    }
    .photography-slider {
        padding: 0;
    }
    
    .photography-title {
        font-size: 2.4rem;
        margin-bottom: 0.75rem;
        max-width: 65%;
    }
    .photography-overlay {
        padding: 1rem 2.5rem;
    }
    .photography-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .slider-arrow {
        width: 3rem;
        height: 3rem;
    }
    .footer {
        padding: 3rem 4rem;
    }
    
    .footer-title {
        font-size: 2rem;
    }
    
    .footer-nav {
        gap: 2rem;
        font-size: 1rem;
    }


    /* About us */
    .what-rolla-section {
        max-width: 1400px;
        margin-top: 3rem;
        background-position: center;
        background-position: 79% 0%;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr 1fr;
        min-height: 450px;
    }
    
    .text-side {
        padding: 50px 35px;
    }
    
    .text-side h2 {
        font-family: var(--font-accent);    
        font-weight: 500;
        font-size: 35px;
        padding-bottom: 10px;
    }
    
    .text-side p {
        font-size: 16px;
        line-height: 25px;
    } 
    /* Who Are We - Tablet */
    .who-are-we-section {
        padding: 60px 40px;
    }
    
    .section-title {
        font-size: 80px;
    }
    
    .who-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    
    .founder-name {
        font-size: 63px;
    }
    /* Team - Tablet */
    .team-section {
        padding: 60px 40px;
    }
    
    .team-title {
        margin-bottom: 60px;
    }
    
    .team-member {
        grid-template-columns: 70% 30%;
        gap: 40px;
        padding: 40px 0;
        align-items: center;
    }   
    .subscribe-form {
        flex-direction: row;
    }
    
    .subscribe-form input,
    .subscribe-form button {
        width: auto;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .main-logo{width: 28%;}
    .main-container {
        margin: 2.5% auto;
    }
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-background {
        padding: 0.5rem;
    }
    
    .hero-title {
        font-size: 12rem;
    }
    
    .banner-content {
         padding: 1rem 0rem 3rem 0rem;
    }
    
    .banner-title {
        font-size: 50px;
        line-height: 3rem;
        padding-bottom: 25px;
        text-align: center;
    }

    .section-title {
         padding: 1rem 0;
    }
    
    .section-title h2 {
        font-size: 80px;
    }
    .news-section {
        padding-bottom: 3em;
    }
    .news-grid {
        padding: 0 0 3rem 0;
        grid-template-columns: repeat(3, 1fr);
        /* gap: 3rem; */
    }
    .news-item { 
        border-right: 1px solid #252525;
        padding-right: 1rem; /* Add padding instead of gap */
        padding-left: 1rem;
    }
    .news-item-overlay {
        padding-right: 2em;
    }    
    .news-item-overlay::after {
        content: '';
        position: absolute;
        right: 1em;
        top: 50px; /* Start position */
        bottom: 50px; /* End position */
        width: 1px;
        background-color: #252525;
        z-index: 10; /* Make sure it appears above the image */
    }
    .side-video-title {
        font-size: 1.125rem;
    }
    .chiceasy-label {
        margin-top: 10px;
    }
    .author-avatar-wrap{
        bottom: 75%;
    }
    .overlay-content-cultured {
        width: 100%;
        position: relative;
        bottom: 0;

    }
    .cultured-overlay {
        position: absolute;
        width: 100%;
        color: #000;
        /* background: rgba(217, 217, 217, 1); */
        padding: 4rem 0 4rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: normal;
        min-height: auto;
    }
    .chiceasy-title {
        line-height: 25px;
        padding-top: 10px;
    }
    .chiceasy-item-date {
        font-size: 0.95rem;
        color: var(--text-secondary);
        margin-top: 1rem;
        font-family: var(--font-heading);
        text-align: left !important;
        width: 100%;
    }
    .photography-slider {
        padding: 0 ;
    }
    
    .photography-overlay {
        padding: 1rem 2.5rem;
    }
    
    .photography-title {
        font-size: 2.4rem;
        margin-bottom: 0.75rem;
        max-width: 65%;
    }
    
    .photography-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
     .slider-arrow {
        width: 3rem;
        height: 3rem;
    }
    .slider-arrow-left {
        left: 2.5rem;
    }
    
    .slider-arrow-right {
        right: 2.5rem;
    }
    
    .footer {
        padding: 4rem 5rem;
    }
    
    .footer-title {
        font-size: 2.25rem;
    }
    /* /About us */
    .content-wrapper {
        min-height: 500px;
    }
    .what-rolla-section {
        max-width: 1400px;
        margin-top: 3rem;
        background-position: center;
        background-position: 79% 0%;
    }
    .text-side {
        padding: 60px 150px 60px 125px;
    }
    
    .text-side h2 {
        font-family: var(--font-accent);    
        font-weight: 600;
        font-size: 50px;
        line-height: 100%;
        padding-bottom: 1em;
    }
    
    .text-side p {
        font-size: 16px;
        line-height: 25px;
    }
     /* Who Are We - Desktop */
    .who-are-we-section {
        padding: 55px 60px;
    }
    
    .section-title {
        font-size: 80px;
    }
    
    .who-content-wrapper {
        gap: 60px;
    }
    /* Team - Desktop */
    .team-section {
        padding: 80px 60px;
    }
    
    .team-member {
        grid-template-columns: 70% 30%;
        gap: 60px;
        padding: 50px 0;
    }
    .subscribe-form {
        flex-direction: row;
    }
    
    .subscribe-form input,
    .subscribe-form button {
        width: auto;
    }
    .subscribe-container h2 {
        font-size: 22px;            
    }
}