/* ================================================================
   DAU Design Refresh  v1.0
   University of Dar Al Ulloom — modern visual layer
   Inspired by: clean card-based layouts (Restly reference)
   Teal palette: #4ba7a8 (accent) / #1d6d6e (primary) / #112d2d (dark)
   ================================================================ */

/* ── DAU University Fonts ── */
@font-face {
  font-family: 'GE SS Two';
  src: url('fonts/GE_SS_Two_Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GE SS Two';
  src: url('fonts/GE_SS_Two_Medium-1.otf') format('opentype');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GE SS Two';
  src: url('fonts/GE_SS_Two_Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eurostile';
  src: url('fonts/EUROSTILE.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eurostile';
  src: url('fonts/EUROSTILE-DEMI.OTF') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eurostile';
  src: url('fonts/EUROSTILE-BOLD REGULAR.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Arabic pages (RTL) → GE SS Two | English pages (LTR) → Eurostile + GE SS Two */
body {
  font-family: 'GE SS Two', 'Droid Arabic Kufi', sans-serif;
}
body:not(.rtl) {
  font-family: 'Eurostile', 'GE SS Two', sans-serif;
}

/* ================================================================
   E-SERVICES POPUP MODAL  (.dau-esvc-*)
   ================================================================ */

/* Overlay */
.dau-esvc-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.dau-esvc-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Backdrop */
.dau-esvc-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 18, .65);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

/* Card */
.dau-esvc-card {
  position: relative;
  width: min(440px, 96vw);
  background: #0f3535;
  /* background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); */
  background-size: 26px 26px;
  border-radius: 18px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  transform: translateY(16px) scale(.97);
  transition: transform .28s cubic-bezier(.22,.68,0,1.2);
}
.dau-esvc-modal.is-open .dau-esvc-card {
  transform: translateY(0) scale(1);
}

/* Floating badges */
.dau-esvc-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #1a3535;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  white-space: nowrap;
}
.dau-esvc-float--top {
  top: -16px;
  inset-inline-end: 20px;
}
.dau-esvc-float--top i { color: #f5a623; }
.dau-esvc-float--bottom {
  bottom: -16px;
  inset-inline-start: 20px;
}
.dau-esvc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34,197,94,.25);
}

/* Close button */
.dau-esvc-close {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.7);
  transition: background .15s, color .15s;
}
.dau-esvc-close:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Card header row */
.dau-esvc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.dau-esvc-univ {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.dau-esvc-year {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(75,167,168,.35);
  border: 1px solid rgba(75,167,168,.5);
  border-radius: 12px;
  padding: 3px 10px;
  letter-spacing: .04em;
}

/* Services list */
.dau-esvc-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dau-esvc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.dau-esvc-item:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
}
.dau-esvc-ico {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(75,167,168,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #4ba7a8;
  font-size: 14px;
  transition: background .15s;
}
.dau-esvc-item:hover .dau-esvc-ico {
  background: rgba(75,167,168,.35);
}
.dau-esvc-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.dau-esvc-label span { line-height: 1.3; }
.dau-esvc-label small {
  font-size: 10px;
  font-weight: 700;
  color: rgba(75,167,168,.85);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* CTA button */
.dau-esvc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: #1d9e6f;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
  margin-bottom: 8px;
  transition: background .15s, transform .12s;
}
.dau-esvc-cta:hover {
  background: #17875f;
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Topbar trigger button reset */
button.dau-top-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ── Anti-alias text ── */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Wider container ── */
.container { max-width: 1600px !important; width: 100%; padding-right: 30px; padding-left: 30px; }

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

/* ================================================================
   HERO — teal overlay instead of old navy-green
   ================================================================ */
.dau-hero__overlay {
  background: linear-gradient(
    115deg,
    rgba(17,45,45,.84) 0%,
    rgba(29,109,110,.52) 58%,
    rgba(17,45,45,.32) 100%
  );
}

/* ================================================================
   SECTIONS  — better breathing room
   ================================================================ */
.section          { padding: 60px 0; }
.section-gray     { background: #f4f8f8; }
.college-section  { background: #ffffff; } /* legacy */
.services-section { background: #f4f8f8; padding: 70px 0; }

/* ── Section heading ── */
h2.entry-title {
  font-size: 22px;
  font-weight: 700;
  color: #112d2d;
  margin: 0 0 30px;
  padding-bottom: 12px;
  display: inline-block;
  position: relative;
}
h2.entry-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 46px;
  height: 3px;
  background: #4ba7a8;
  border-radius: 3px;
}
h2.entry-title a         { color: #112d2d; }
h2.entry-title a:hover   { color: #1d6d6e; }

/* ================================================================
   NEWS CARDS  (.news-item)
   ================================================================ */
.news-item {
  padding: 0;
  border: none;
  min-height: 0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 3px 18px rgba(17,45,45,.07);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
  margin-bottom: 24px;
}
.news-item:hover {
  box-shadow: 0 12px 40px rgba(17,45,45,.15);
  transform: translateY(-5px);
}

/* Image area */
.news-item .news-img {
  margin-bottom: 0;
  overflow: hidden;
  text-align: start;
}
.news-item .news-img a { display: block; overflow: hidden; }
.news-item .news-img img {
  width: 100%;
  height: 184px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.news-item:hover .news-img img { transform: scale(1.07); }

/* Text area */
.news-info {
  padding: 16px 18px 20px;
}
.news-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: #112d2d;
  min-height: 0;
  margin-bottom: 8px;
  line-height: 1.6;
}
.news-item h3 a          { color: #112d2d; }
.news-item h3 a:hover    { color: #1d6d6e; }

.news-info p {
  font-size: 12.5px;
  color: #5e7575;
  line-height: 1.65;
  margin-bottom: 0;
}
.news-info p a {
  color: #4ba7a8;
  font-weight: 600;
}
.news-info p a:hover { color: #1d6d6e; }

/* OWL nav */
.owl-nav      { top: -52px; }
.owl-nav > div::before { color: #4ba7a8; font-size: 24px; }
.owl-nav > div {
  background: rgba(75,167,168,.08);
  border-radius: 5px;
  width: 28px;
  height: 28px;
  line-height: 28px;
}
.owl-nav > div:hover::before { color: #1d6d6e; }

/* ================================================================
   POLL WIDGET  (.wp-polls) — matches news cards
   ================================================================ */
.wp-polls {
  border: none;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 3px 18px rgba(17,45,45,.07);
  background: #fff;
  min-height: 0;
}
.wp-polls .Buttons {
  background: #1d6d6e;
  border-color: #1d6d6e;
  border-radius: 5px;
  padding: 8px 22px;
  transition: background .18s;
}
.wp-polls .Buttons:hover { background: #4ba7a8; border-color: #4ba7a8; }

/* ================================================================
   COLLEGES SECTION — new card grid  (.dau-colleges-section)
   ================================================================ */
.dau-colleges-section {
  padding: 64px 24px;
  background: #fff;
}

/* Header */
.dau-colleges-header { margin-bottom: 40px; }

.dau-colleges-label {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(29,109,110,.1);
  color: #1d6d6e;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.dau-colleges-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #0a1f1f;
  margin: 0 0 6px;
  line-height: 1.2;
}
.dau-colleges-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #555;
  margin: 0 0 12px;
}
.dau-colleges-desc {
  font-size: 14px;
  color: #888;
  max-width: 500px;
  margin: 0;
  line-height: 1.65;
}

/* Grid */
.dau-colleges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Card */
.dau-cg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 20px 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  text-decoration: none;
  transition: box-shadow .25s ease, transform .25s ease;
}
.dau-cg-card:hover {
  box-shadow: 0 8px 28px rgba(17,45,45,.11);
  transform: translateY(-4px);
  text-decoration: none;
}

/* Diagonal arrow (top corner) */
.dau-cg-card__arrow {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  transition: color .2s;
}
.dau-cg-card:hover .dau-cg-card__arrow { color: var(--card-color, #1d6d6e); }

/* Icon box */
.dau-cg-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--card-icon-bg, rgba(29,109,110,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.dau-cg-card:hover .dau-cg-card__icon {
  background: var(--card-color, #1d6d6e);
}
.dau-cg-card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.dau-cg-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: #1d6d6e;
}

/* Names */
.dau-cg-card__name {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 700;
  color: #0a1f1f;
  line-height: 1.4;
}
.dau-cg-card__name-en {
  margin: 0;
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

/* "View All" card */
.dau-cg-card--all {
  background: var(--card-color, #1d6d6e);
  border-color: transparent;
}
.dau-cg-card--all .dau-cg-card__arrow { color: rgba(255,255,255,.5); }
.dau-cg-card--all:hover .dau-cg-card__arrow { color: #fff; }
.dau-cg-card--all .dau-cg-card__icon {
  background: rgba(0,0,0,.18);
}
.dau-cg-card--all .dau-cg-card__icon svg { stroke: #fff; }
.dau-cg-card--all .dau-cg-card__name { color: #fff; }
.dau-cg-card--all .dau-cg-card__name-en { color: rgba(255,255,255,.7); }

/* Responsive */
@media (max-width: 991px) {
  .dau-colleges-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 576px) {
  .dau-colleges-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .dau-cg-card { padding: 18px 14px 16px; }
}

/* ================================================================
   SERVICES SECTION — header bar
   ================================================================ */
.services-section .title {
  background: linear-gradient(100deg, #1d6d6e 0%, #1b6364 100%);
  padding: 0;
  margin-bottom: 28px;
}
.services-section .title .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.services-section .title h2 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.service-options {
  position: relative;
  float: none;
}
.service-options::after { color: rgba(255,255,255,.8); }
.service-options select {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 6px;
  color: #fff;
  padding: 9px 36px 9px 14px;
  font-size: 13px;
  transition: background .18s;
}
.service-options select:hover { background: rgba(255,255,255,.2); }

/* ── Service cards ── */
.service-box {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 16px rgba(17,45,45,.07);
  padding: 18px 18px;
  min-height: 0;
  margin-bottom: 22px;
  transition: box-shadow .3s ease, transform .3s ease;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.service-box:hover {
  box-shadow: 0 10px 32px rgba(17,45,45,.14);
  transform: translateY(-4px);
}

/* Left accent line on hover */
.service-box::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #4ba7a8;
  border-radius: 0;
  transform: scaleY(0);
  transition: transform .28s ease;
}
.service-box:hover::before { transform: scaleY(1); }

/* Icon container */
.servIcon {
  float: none;
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(75,167,168,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s;
}
.service-box:hover .servIcon { background: rgba(75,167,168,.18); }

.servIcon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.servIcon img,
.servIcon a img {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain;
  float: none !important;
  margin: 0 !important;
}

/* Desc */
.service-desc {
  margin-right: 0;
  margin-left: 0;
  flex: 1;
  min-width: 0;
}
.service-desc h3 {
  font-size: 14px;
  font-weight: 700;
  color: #112d2d;
  margin-bottom: 5px;
  margin-top: 4px;
  line-height: 1.45;
}
.service-desc h3 a          { color: #112d2d; }
.service-box:hover .service-desc h3 a { color: #1d6d6e; }

.service-desc p {
  font-size: 12.5px;
  color: #7a8e8e;
  margin: 0;
  line-height: 1.55;
}

/* ================================================================
   FOOTER
   ================================================================ */
.widget-footer {
  background: #0b1f1f;
  padding-top: 54px;
  padding-bottom: 16px;
}
.widget-footer .widget {
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: 22px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.68);
  text-align: right;
}
@media (min-width: 768px) {
  .widget-footer .widget {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: right;
  }
}

/* Widget title */
.widget-title {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4ba7a8;
  display: inline-block;
  width: auto;
  letter-spacing: .01em;
}

/* Footer menu links */
footer .menu           { margin: 0; padding: 0; }
footer .menu li        { float: none; width: auto; display: block; }
footer .menu li a {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  display: block;
  padding: 5px 0;
  border-bottom: none;
  transition: color .18s, padding .15s;
}
footer .menu li a:hover {
  color: #4ba7a8;
  background: none;
  padding-inline-start: 6px;
}

/* Widget text content */
.widget_text { color: rgba(255,255,255,.68); font-size: 13px; }
.widget_text a { color: #4ba7a8; }
.widget_text a:hover { color: #fff; }
.widget_text i { color: #4ba7a8; }

/* Bottom bar */
.btm-footer {
  background: #071515;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.copyright {
  color: rgba(255,255,255,.42);
  font-size: 12px;
  line-height: 38px;
}
@media (min-width: 768px) {
  p.copyright { text-align: right; }
}

/* ── Social icons ── */
.social a { background: #1c2e2e; }
.social a:hover { background: #4ba7a8; }

/* ================================================================
   NAV LINKS (sidebar navigation)
   ================================================================ */
.nav-links a {
  background: #1d6d6e;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
  transition: background .18s, padding .15s;
}
.nav-links a:hover { background: #112d2d; }

/* ================================================================
   SIDEBAR WIDGETS
   ================================================================ */
.sidebar .widget-title,
.sidebar .widgettitle {
  background: #1d6d6e;
  border-radius: 6px 6px 0 0;
  font-size: 15px;
}
.sidebar .widget .menu {
  border: 1px solid #e8f0f0;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}
.sidebar .widget .menu li { padding: 0; border-bottom: 1px solid #e8f0f0; }
.sidebar .widget .menu li:last-child { border: none; }
.sidebar .widget .menu li a {
  color: #2a3a3a;
  font-size: 13px;
  display: block;
  padding: 10px 16px;
  transition: background .15s, color .15s, padding .15s;
}
.sidebar .widget .menu li a:hover { color: #fff; background: #1d6d6e; padding-inline-start: 22px; }
.sidebar .widget .menu li.current-menu-item > a { color: #1d6d6e; background: rgba(75,167,168,.08); }

/* ================================================================
   PAGE TITLE BANNER
   ================================================================ */
.page-title { color: #1d6d6e; font-size: 20px; }
.manager-info h3 {
  background: #1d6d6e;
  border-radius: 4px 4px 0 0;
}
.collapsible {
  background-color: #1d6d6e;
  border-radius: 4px;
  margin-bottom: 3px;
}
.collapsible.active,
.collapsible:hover { background-color: #4ba7a8; }

/* ================================================================
   CONTACT INFO BOX
   ================================================================ */
.contact-info { background: #1d6d6e; border-radius: 8px; }
.contact-info h2 { color: #fff; }

/* ================================================================
   PRELOADER dots — teal branded
   ================================================================ */
.spinner > div { background-color: #4ba7a8; }

/* ================================================================
   SCROLLBAR (WebKit)
   ================================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: #4ba7a8; border-radius: 4px; }
::-webkit-scrollbar-track { background: #f0f4f4; }

/* ================================================================
   BUTTONS — general
   ================================================================ */
.btn-primary,
.button-primary {
  background: #1d6d6e;
  border-color: #1d6d6e;
  border-radius: 6px;
  transition: background .18s, box-shadow .18s, transform .14s;
}
.btn-primary:hover,
.button-primary:hover {
  background: #4ba7a8;
  border-color: #4ba7a8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(75,167,168,.35);
}
.wpcf7-submit {
  background: #1d6d6e;
  border-radius: 6px;
  transition: background .18s;
}
.wpcf7-submit:hover { background: #4ba7a8; }

/* ================================================================
   FORMS — global refinement
   ================================================================ */
.wpcf7-form-control {
  border: 1px solid #d8e4e4;
  border-radius: 6px;
  transition: border-color .18s, box-shadow .18s;
}
.wpcf7-form-control:focus {
  border-color: #4ba7a8;
  box-shadow: 0 0 0 3px rgba(75,167,168,.12);
  outline: none;
}

/* ================================================================
   MODAL OVERRIDES — tables inside contact modal
   ================================================================ */
div#contactallModal table thead tr { background: #1d6d6e; }
.panel-success > .panel-heading      { background: #1d6d6e; border-color: #1d6d6e; }
.panel-success { border-color: rgba(29,109,110,.25); border-radius: 8px; overflow: hidden; }

/* ================================================================
   RESPONSIVE ADJUSTMENTS
   ================================================================ */
@media (max-width: 991px) {
  .section { padding: 40px 0; }
  .news-item .news-img img   { height: 165px; }
  .college-box img           { height: 165px; }
  .services-section .title .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .section           { padding: 30px 0; }
  .news-item .news-img img  { height: 155px; }
  .college-box img          { height: 155px; }
  .service-box { gap: 12px; }
  .servIcon { width: 44px; min-width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  h2.entry-title { font-size: 19px; }
  .service-box { padding: 14px; }
}

/* ================================================================
   NEWS SECTION v2  (.dau-news-section)
   Tabbed layout with modern card carousel
   ================================================================ */
.dau-news-section {
  padding: 70px 0;
  background: #f4f8f8;
}

/* ── Header row ── */
.dau-ns-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.dau-ns-head__left { flex: 1; max-width: 660px; }
.dau-ns-head__right { flex-shrink: 0; padding-top: 6px; }

.dau-ns-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #4ba7a8;
  margin-bottom: 10px;
}
.dau-ns-title {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #112d2d;
  margin: 0 0 12px;
  line-height: 1.25;
}
.dau-ns-desc {
  font-size: 13.5px;
  color: #6a7c7c;
  line-height: 1.75;
  margin: 0;
  max-width: 540px;
}

/* "BROWSE ALL →" link */
.dau-ns-browse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1d6d6e;
  text-decoration: none;
  border-bottom: 1.5px solid #1d6d6e;
  padding-bottom: 2px;
  transition: color .18s, border-color .18s, gap .2s;
  white-space: nowrap;
}
.dau-ns-browse:hover {
  color: #4ba7a8;
  border-color: #4ba7a8;
  gap: 10px;
}
.dau-ns-browse svg { flex-shrink: 0; }

/* ── Tabs ── */
.dau-ns-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #dde8e8;
  margin-bottom: 36px;
}
.dau-ns-tab {
  padding: 10px 0;
  margin-inline-end: 30px;
  margin-bottom: -2px;
  font-size: 14px;
  font-weight: 600;
  color: #9ab8b8;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color .18s, border-color .18s;
  font-family: inherit;
  white-space: nowrap;
}
.dau-ns-tab:hover { color: #1d6d6e; }
.dau-ns-tab.active {
  color: #1d6d6e;
  border-bottom-color: #4ba7a8;
}

/* ── Panels ── */
.dau-ns-panel         { display: none; }
.dau-ns-panel.active  { display: block; }

/* ── Swiper overrides ── */
.dau-ns-swiper { overflow: hidden; }
.dau-ns-swiper .swiper-slide { height: auto; }
.dau-ns-swiper .swiper-wrapper { align-items: stretch; }

/* ── News card ── */
.dau-nc {
  height: 100%;
  box-sizing: border-box;
}

/* Image */
.dau-nc__img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 16px;
  background: #dde8e8;
  aspect-ratio: 16 / 10;
}
.dau-nc__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.dau-nc:hover .dau-nc__img img { transform: scale(1.05); }

.dau-nc__img-placeholder {
  width: 100%;
  padding-bottom: 62.5%;    /* 16:10 */
  background: linear-gradient(135deg, #c8dada 0%, #dde8e8 100%);
}

/* Arrow button overlay */
.dau-nc__arrow {
  position: absolute;
  bottom: 12px;
  inset-inline-end: 12px;
  width: 36px;
  height: 36px;
  background: #1d6d6e;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s, transform .22s;
}
.dau-nc:hover .dau-nc__arrow {
  opacity: 1;
  transform: translateY(0);
}
.dau-nc__arrow svg { display: block; }

/* Card body */
.dau-nc__body { padding: 0; }

.dau-nc__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.dau-nc__cat {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: #557a7a;
  background: rgba(75,167,168,.1);
  padding: 3px 9px;
  border-radius: 3px;
  white-space: nowrap;
}
.dau-nc__date {
  font-size: 11.5px;
  color: #9ab0b0;
  white-space: nowrap;
}

.dau-nc__title {
  font-size: 15px;
  font-weight: 700;
  color: #112d2d;
  margin: 0 0 8px;
  line-height: 1.5;
}
.dau-nc__title a          { color: #112d2d; }
.dau-nc__title a:hover    { color: #1d6d6e; }

.dau-nc__excerpt {
  font-size: 13px;
  color: #6a7c7c;
  line-height: 1.65;
  margin: 0;
}

/* ── Navigation arrows ── */
.dau-ns-nav {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 30px;
}
.dau-ns-btn {
  width: 42px;
  height: 42px;
  background: #1d6d6e;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
  flex-shrink: 0;
}
.dau-ns-btn:hover                { background: #4ba7a8; }
.dau-ns-btn:disabled             { background: #c8d8d8; cursor: not-allowed; }
.dau-ns-btn svg                  { display: block; pointer-events: none; }

.dau-ns-empty {
  padding: 48px 0 24px;
  color: #9ab0b0;
  font-size: 14px;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .dau-news-section     { padding: 50px 0; }
  .dau-ns-head          { flex-direction: column; gap: 14px; }
  .dau-ns-head__right   { padding-top: 0; }
  .dau-nc               { flex: 0 0 50%; }
}
@media (max-width: 575px) {
  .dau-news-section     { padding: 36px 0; }
  .dau-ns-title         { font-size: 1.4rem; }
  .dau-nc               { flex: 0 0 100%; }
  .dau-ns-tabs          { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── RTL adjustments ── */
[dir="rtl"] .dau-ns-browse svg,
.rtl .dau-ns-browse svg { transform: scaleX(-1); }

/* ================================================================
   APPLY STEPS SECTION
   ================================================================ */
.dau-apply-section {
  position: relative;
  padding: 80px 0;
  background-color: #112d2d;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.dau-apply-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 30, .78);
  z-index: 0;
}
.dau-apply-section > .container {
  position: relative;
  z-index: 1;
}
.dau-apply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Left column ── */
.dau-apply-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4fb8b9;
  background: rgba(79,184,185,.12);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.dau-apply-title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 16px;
}
.dau-apply-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin: 0 0 28px;
}
.dau-apply-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1d6d6e;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.dau-apply-cta:hover {
  background: #25888a;
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.dau-apply-cta svg { flex-shrink: 0; }

/* ── Right column — timeline accordion ── */
.dau-apply-steps {
  position: relative;
  display: flex;
  flex-direction: column;
}
/* Continuous vertical timeline line */
.dau-apply-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.1);
  z-index: 0;
}

.dau-step {
  position: relative;
  z-index: 1;
}
.dau-step__head {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 13px 12px 13px 0;
  border-radius: 10px;
  transition: background .15s;
  -webkit-user-select: none;
  user-select: none;
}
.dau-step__head:hover { background: rgba(255,255,255,.04); }

.dau-step__num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.22);
  background: #112d2d;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .22s, border-color .22s, color .22s;
  position: relative;
  z-index: 2;
}
.dau-step.is-open .dau-step__num {
  background: #1d6d6e;
  border-color: #1d6d6e;
  color: #fff;
}

.dau-step__title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: color .15s;
  line-height: 1.35;
}
.dau-step.is-open .dau-step__title { color: #fff; }

.dau-step__chevron {
  flex-shrink: 0;
  color: rgba(255,255,255,.35);
  transition: transform .25s ease, color .15s;
  display: flex;
  align-items: center;
}
.dau-step.is-open .dau-step__chevron {
  transform: rotate(180deg);
  color: rgba(255,255,255,.65);
}

/* Animated slide: max-height approach */
.dau-step__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.dau-step.is-open .dau-step__body { max-height: 500px; }

.dau-step__body-inner {
  padding: 2px 12px 18px 52px; /* 52 = 38px num + 14px gap */
}
.dau-step__body-inner p {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin: 0 0 14px;
}
.dau-step__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #4fb8b9;
  border: 1px solid rgba(79,184,185,.35);
  padding: 7px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.dau-step__btn:hover {
  background: rgba(79,184,185,.15);
  color: #fff;
  text-decoration: none;
}

/* RTL */
html[dir="rtl"] .dau-apply-steps::before { left: auto; right: 19px; }
html[dir="rtl"] .dau-step__head { padding: 13px 0 13px 12px; }
html[dir="rtl"] .dau-step__body-inner { padding: 2px 52px 18px 12px; }
html[dir="rtl"] .dau-apply-cta svg { transform: scaleX(-1); }

/* Responsive */
@media (max-width: 991px) {
  .dau-apply-inner { grid-template-columns: 1fr; gap: 36px; }
  .dau-apply-title { font-size: 24px; }
}
@media (max-width: 479px) {
  .dau-apply-section { padding: 50px 0; }
  .dau-apply-title { font-size: 20px; }
}

/* ================================================================
   DAU FOOTER
   ================================================================ */
.dau-footer { margin: 0; padding: 0; }

/* ── Main area ── */
.dau-footer-main {
  background: #112d2d;
  padding: 52px 0 40px;
}
.dau-footer-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

/* ── Logo + social row ── */
.dau-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}
.dau-footer-logo { display: inline-block; }
.dau-footer-logo img { height: 52px; width: auto; display: block; }
.dau-footer-logo--text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

/* ── Social icons ── */
.dau-footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.dau-ft-soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: background .18s, color .18s;
  flex-shrink: 0;
}
.dau-ft-soc:hover { background: #1d6d6e; color: #fff; }

/* ── Nav columns grid ── */
.dau-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
}
.dau-footer-col-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.dau-footer-links {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.dau-footer-links > li { margin-bottom: 6px; list-style: none !important; }
.dau-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  line-height: 1.55;
  transition: color .15s;
}
.dau-footer-links a:hover { color: #4fb8b9; }

/* ── Right card ── */
.dau-footer-right {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  overflow: hidden;
}

/* Newsletter */
.dau-footer-nl {
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dau-footer-card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}
.dau-nl-row {
  display: flex;
  gap: 8px;
}
.dau-nl-row input[type="email"] {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  padding: 9px 13px;
  outline: none;
  transition: border-color .2s;
}
.dau-nl-row input[type="email"]::placeholder { color: rgba(255,255,255,.3); }
.dau-nl-row input[type="email"]:focus { border-color: #1d6d6e; }
.dau-nl-row button {
  background: #1d6d6e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s;
  flex-shrink: 0;
}
.dau-nl-row button:hover { background: #25888a; }
.dau-nl-row button:disabled { opacity: .6; cursor: not-allowed; }
.dau-nl-msg {
  font-size: 12px;
  margin: 8px 0 0;
  min-height: 16px;
}
.dau-nl-msg.ok { color: #4fb8b9; }
.dau-nl-msg.err { color: #f87171; }

/* Contact info */
.dau-footer-contact {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dau-ft-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dau-ft-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.dau-ft-contact-list li:last-child { margin-bottom: 0; }
.dau-ft-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(29,109,110,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4fb8b9;
  margin-top: 1px;
}
.dau-ft-contact-list a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .15s;
}
.dau-ft-contact-list a:hover { color: #4fb8b9; }

/* Map */
.dau-footer-map { height: 190px; overflow: hidden; }
.dau-footer-map iframe { width: 100%; height: 100%; display: block; }

/* ── Bottom bar ── */
.dau-footer-bottom {
  background: rgba(0,0,0,.28);
  padding: 14px 0;
}
.dau-footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.dau-footer-copy { font-size: 12.5px; color: rgba(255,255,255,.45); }
.dau-footer-legal { display: flex; align-items: center; gap: 6px; font-size: 12.5px; }
.dau-footer-legal a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
.dau-footer-legal a:hover { color: #fff; }
.dau-footer-legal span { color: rgba(255,255,255,.35); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .dau-footer-grid { grid-template-columns: 1fr 320px; }
}
@media (max-width: 991px) {
  .dau-footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .dau-footer-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
  .dau-footer-main { padding: 36px 0 28px; }
  .dau-footer-nav { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .dau-footer-top { flex-wrap: wrap; }
  .dau-footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ================================================================
   GALLERY SECTION  (.dau-gallery-section)
   ================================================================ */
.dau-gallery-section {
  padding: 72px 0 0;
  background: #fff;
}

.dau-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.dau-gallery-head__left { flex: 1; min-width: 0; }
.dau-gallery-head__right { flex-shrink: 0; padding-bottom: 4px; }

.dau-gallery-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4ba7a8;
  margin-bottom: 10px;
}
.dau-gallery-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #112d2d;
  line-height: 1.2;
  margin: 0 0 12px;
}
.dau-gallery-desc {
  font-size: 14.5px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}
.dau-gallery-browse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1d6d6e;
  text-decoration: none;
  letter-spacing: .06em;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color .2s, gap .2s;
}
.dau-gallery-browse:hover { color: #4ba7a8; gap: 10px; text-decoration: none; }

/* Strip */
.dau-gallery-strip {
  display: flex;
  height: 380px;
  gap: 3px;
  overflow: hidden;
}
.dau-gallery-item {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 0;
}
.dau-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.dau-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,45,45,0);
  transition: background .3s;
}
.dau-gallery-item:hover img { transform: scale(1.07); }
.dau-gallery-item:hover .dau-gallery-item__overlay { background: rgba(17,45,45,.18); }

@media (max-width: 768px) {
  .dau-gallery-section { padding-top: 48px; }
  .dau-gallery-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
  .dau-gallery-strip { height: 220px; }
}

/* ================================================================
   PORTFOLIO ARCHIVE  (archive-portfolio.php)
   ================================================================ */
.dau-pf-section {
  padding: 48px 0 64px;
  background: #f8fafa;
}

.dau-pf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dau-pf-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: #dde8e8;
}

.dau-pf-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.dau-pf-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,45,45,.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.dau-pf-item__title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dau-pf-item:hover img { transform: scale(1.07); }
.dau-pf-item:hover .dau-pf-item__overlay { opacity: 1; }

/* Pagination */
.dau-pf-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.dau-pf-pagination .nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.dau-pf-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1d6d6e;
  background: #fff;
  border: 1px solid #d8eaea;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.dau-pf-pagination .page-numbers.current,
.dau-pf-pagination .page-numbers:hover {
  background: #1d6d6e;
  color: #fff;
  border-color: #1d6d6e;
  text-decoration: none;
}

.dau-pf-empty {
  text-align: center;
  color: #888;
  padding: 60px 0;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .dau-pf-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
  .dau-pf-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

/* ================================================================
   PORTFOLIO SINGLE  (single-portfolio.php)
   ================================================================ */
.dau-pf-single {
  padding: 48px 0 64px;
  background: #f8fafa;
}

.dau-pf-single__desc {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 720px;
}

/* CSS masonry using columns */
.dau-pf-masonry {
  columns: 4;
  column-gap: 8px;
}

.dau-pf-masonry__item {
  display: block;
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: zoom-in;
}

.dau-pf-masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}

.dau-pf-masonry__zoom {
  position: absolute;
  inset: 0;
  background: rgba(17,45,45,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .3s;
  opacity: 0;
}

.dau-pf-masonry__item:hover img { transform: scale(1.05); }
.dau-pf-masonry__item:hover .dau-pf-masonry__zoom {
  background: rgba(17,45,45,.38);
  opacity: 1;
}

@media (max-width: 991px) {
  .dau-pf-masonry { columns: 3; }
}
@media (max-width: 576px) {
  .dau-pf-masonry { columns: 2; column-gap: 5px; }
  .dau-pf-masonry__item { margin-bottom: 5px; }
}

