/* ============ Bilgisayar Mühendisliği Bölümü ============ */

* {
  box-sizing: border-box;
}

:root {
  --navy: #0c1c33;
  --navy-deep: #08152b;
  --blue: #1b6cf3;
  --blue-dark: #0c43b0;
  --bg: #f4f6fa;
  --border: #e7ebf2;
  --line: #f0f3f8;
  --text: #46566f;
  --muted: #7a879c;
  --teal: #11b3a5;
  --violet: #7a5cff;
  --coral: #ff6a45;
  --amber: #f5a524;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: Manrope, system-ui, sans-serif;
}

a {
  color: var(--blue);
}
a:hover {
  color: var(--blue-dark);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Üst bar ---------- */
.topbar {
  background: var(--navy);
  color: #c2d0e6;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.topbar-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.4px;
}
.topbar-cta .star {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 6px;
  background: var(--blue);
  font-size: 12px;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  gap: 7px;
}
.socials a {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #17294a;
  color: #cdd9ea;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.socials a:hover {
  background: var(--blue);
  color: #fff;
}
.socials.lg a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #13294a;
  font-size: 12px;
}

.search {
  display: flex;
  align-items: center;
  background: #17294a;
  border-radius: 9px;
  padding: 6px 11px;
  gap: 8px;
}
.search input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 12.5px;
  width: 120px;
  font-family: inherit;
}
.search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.search span {
  opacity: 0.65;
  font-size: 14px;
}

.lang {
  display: flex;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.lang .active {
  color: #fff;
}
.lang .sep {
  opacity: 0.35;
}
.lang a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

/* ---------- Header ---------- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 40;
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 90px;
}

/* ---------- Üst mega menü (masaüstü) ---------- */
.mega-nav {
  display: flex;
  gap: 2px;
  margin-left: auto;
  list-style: none;
}
.mega-item {
  position: static;
}
.mega-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 13px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #243b5e;
  cursor: pointer;
  white-space: nowrap;
}
.mega-btn:hover {
  background: var(--line);
}
.mega-item.open .mega-btn {
  background: #eef4ff;
  color: var(--blue);
}
.mega-caret {
  display: inline-block;
  font-size: 9px;
  opacity: 0.55;
  transition: transform 0.25s;
}
.mega-item.open .mega-caret {
  transform: rotate(180deg);
}

.mega-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 26px 50px rgba(12, 28, 51, 0.18);
  z-index: 3;
  overflow: hidden;
}
.mega-item.open .mega-panel {
  display: block;
}
.mega-bar {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--violet),
    var(--teal),
    var(--coral),
    var(--amber)
  );
}
.mega-cols {
  padding: 26px 28px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px 28px;
}
.mega-col-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
}
.mega-col-head h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.1px;
}
.mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mega-col a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.mega-col a span {
  font-size: 13px;
  opacity: 0.35;
}
.mega-col a:hover {
  background: #1b6cf314;
  color: var(--blue);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  flex: none;
}
.dot.c1 {
  background: var(--blue);
}
.dot.c2 {
  background: var(--teal);
}
.dot.c3 {
  background: var(--violet);
}
.dot.c4 {
  background: var(--coral);
}
.dot.c5 {
  background: var(--amber);
}

.mega-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(8, 18, 36, 0.18);
}
.mega-overlay.show {
  display: block;
}

/* ---------- Mobil menü ---------- */
.mobile-toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  background: var(--navy);
  border: none;
  border-radius: 11px;
  padding: 13px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 6px 18px 18px;
  max-height: 72vh;
  overflow: auto;
}
.mobile-panel.show {
  display: block;
}
.mobile-item {
  border-bottom: 1px solid var(--line);
}
.mobile-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 15px 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  letter-spacing: 0.2px;
}
.mobile-body {
  display: none;
  padding: 2px 4px 16px;
}
.mobile-body.show {
  display: block;
}
.mobile-group {
  margin-bottom: 14px;
}
.mobile-group-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  color: var(--navy);
}
.mobile-body a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.mobile-body a:hover {
  color: var(--blue);
}

@media (max-width: 880px) {
  .mega-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: none;
}

.brand-logo.sm {
  width: 48px;
  height: 48px;
  border-radius: 11px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.2px;
  text-decoration: none;
}
.brand-name.light {
  color: #fff;
  font-size: 15px;
}
.brand-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1.5px;
}
.brand-sub.dim {
  color: #6b82a3;
  letter-spacing: 0;
  padding-top: 4px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0,
    rgba(255, 255, 255, 0.06) 10px,
    rgba(255, 255, 255, 0) 10px,
    rgba(255, 255, 255, 0) 20px
  );
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8, 18, 36, 0.96) 0%,
    rgba(8, 18, 36, 0.7) 70%,
    rgba(27, 108, 243, 0.35) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 38px;
  padding-bottom: 46px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #9fc0ff;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  opacity: 0.5;
  color: #9fc0ff;
}
.breadcrumb strong {
  color: #fff;
  font-weight: 700;
}
.hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.04;
  letter-spacing: -1px;
  margin: 18px 0 0;
}

/* ---------- Layout ---------- */
.layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 10px;
}

/* ---------- Sol menü ---------- */
.sidebar {
  position: sticky;
  top: 18px;
}
.side-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.side-head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 15px;
}
.tick {
  width: 5px;
  height: 18px;
  background: var(--blue);
  border-radius: 3px;
  display: inline-block;
  flex: none;
}
.tick.lg {
  height: 24px;
}

.side-nav {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #243b5e;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.nav-item:hover {
  background: var(--line);
  color: #243b5e;
}
.nav-item.active {
  background: var(--blue);
  color: #fff;
}
.nav-item.active:hover {
  background: var(--blue);
  color: #fff;
}
.nav-item.open {
  background: #eef4ff;
  color: var(--blue);
}

.c {
  flex: none;
  font-size: 13px;
  opacity: 0.3;
}
.caret {
  font-size: 10px;
  opacity: 0.55;
  transition: transform 0.25s;
}
.open > .caret {
  transform: rotate(180deg);
}
.nav-item.active .c {
  opacity: 0.9;
}

.sub {
  display: none;
  padding: 2px 0 6px 10px;
  flex-direction: column;
  gap: 1px;
}
.sub.show {
  display: flex;
}
.sub a,
.sub-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.sub a:hover,
.sub-item:hover {
  background: #eef4ff;
  color: var(--blue);
}
.sub-item.open {
  background: #eef4ff;
  color: var(--blue);
  font-weight: 800;
}
.sub-2 {
  padding-left: 12px;
}

/* ---------- Sekreterlik kartı ---------- */
.secretary {
  background: var(--navy);
  border-radius: 18px;
  padding: 22px;
  margin-top: 16px;
  color: #fff;
}
.sec-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.secretary p {
  font-size: 13px;
  line-height: 1.55;
  color: #9fb3d1;
  margin: 8px 0 14px;
}
.sec-lines {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}
.sec-lines div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: #dfe8f7;
}
.sec-lines span {
  opacity: 0.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
}
.btn:hover {
  background: var(--blue-dark);
  color: #fff;
}

/* ---------- Slider ---------- */
.slider {
  position: relative;
  background: var(--navy);
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  max-width: 1200px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide-note {
  position: absolute;
  left: 14px;
  bottom: 40px;
  font:
    600 10px ui-monospace,
    monospace;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 9px;
  border-radius: 6px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(8, 18, 36, 0.55);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.slider-arrow:hover {
  background: var(--blue);
}
.slider-arrow.prev {
  left: 14px;
}
.slider-arrow.next {
  right: 14px;
}
.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  transition: all 0.3s;
}
.slider-dots button.active {
  width: 26px;
  background: #fff;
}

/* ---------- Bölümler ---------- */
.section {
  margin-top: 32px;
}
.section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.section-head.between {
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-head.between .section-head {
  margin-bottom: 0;
}
.section-head h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.4px;
}
.all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 19px;
}
.card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
}
.card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.card.a1 .card-icon {
  background: #1b6cf314;
  color: var(--blue);
}
.card.a2 .card-icon {
  background: #11b3a514;
  color: var(--teal);
}
.card.a3 .card-icon {
  background: #7a5cff14;
  color: var(--violet);
}
.card.a4 .card-icon {
  background: #ff6a4514;
  color: var(--coral);
}
.card.a5 .card-icon {
  background: #f5a52414;
  color: var(--amber);
}
.card.a1:hover {
  border-color: var(--blue);
}
.card.a2:hover {
  border-color: var(--teal);
}
.card.a3:hover {
  border-color: var(--violet);
}
.card.a4:hover {
  border-color: var(--coral);
}
.card.a5:hover {
  border-color: var(--amber);
}

/* ---------- Duyurular ---------- */
.announce-list {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.announce {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.announce:last-child {
  border-bottom: none;
}
.announce:hover {
  background: #f7f9fc;
}
.date-badge {
  flex: none;
  width: 54px;
  height: 56px;
  border-radius: 11px;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.date-badge .d {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 21px;
}
.date-badge .m {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.7;
  letter-spacing: 1px;
  margin-top: 3px;
}
.announce-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.announce-body .cat {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--blue);
}
.announce-body .t {
  font-size: 14.5px;
  font-weight: 700;
  color: #1f2f49;
  line-height: 1.35;
}

/* ---------- İstatistikler ---------- */
.stats {
  background: linear-gradient(120deg, var(--blue), var(--blue-dark));
  border-radius: 18px;
  padding: 32px clamp(22px, 3vw, 36px);
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}
.stats > div {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats .n {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1;
}
.stats .l {
  font-size: 13px;
  font-weight: 600;
  color: #d7e6ff;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: #9fb3d1;
  padding: 40px 0 28px;
  margin-top: 56px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #16294a;
  padding-bottom: 26px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
}
.footer-links a {
  color: #9fb3d1;
  text-decoration: none;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links .copy {
  margin-left: auto;
  color: #5d7299;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .sidebar {
    position: static;
  }
}

/* Tablo stilleri */

/*Yeni Eklenen*/
/* Mobilde görünüm için temel yapı — style.css’teki .mobile-panel, .mobile-group, .mobile-head gibi */
@media (max-width: 880px) {
  .responsive-table {
    display: block;
    margin: 1.25rem 0 2rem;
    padding: 0 16px;
  }
  .responsive-table tbody tr {
    display: block;
    background: #fff;
    border-radius: 11px;
    border-bottom: 1px solid var(--border, #e5e7eb);
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  .responsive-table tbody tr:last-child {
    margin-bottom: 0;
    border-bottom: none;
    box-shadow: none;
  }
  .responsive-table th,
  .responsive-table td {
    display: block;
    padding: 0;
  }
  .responsive-table th {
    display: none; /* Başlıklar gizlenir, data-label ile tekrar eklenir */
  }
  .responsive-table td {
    padding: 14px 16px 4px;
    border-bottom: none;
  }
  .responsive-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: var(--navy);
    line-height: 1.2;
  }
  .responsive-table td:last-child {
    padding-bottom: 16px;
  }
  .responsive-table a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
  }
  .responsive-table a:hover {
    color: var(--navy);
    text-decoration: underline;
  }
}

/* Masaüstünde standart tablo görünümü */
@media (min-width: 881px) {
  .responsive-table {
    width: 100%;
    max-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(8, 18, 36, 0.08);
    background: #fff;
  }
  .responsive-table th,
  .responsive-table td {
    padding: 12px 16px;
    vertical-align: top;
    border-bottom: 1px solid var(--line, #e5e7eb);
  }
  .responsive-table th {
    background: var(--navy-bg, #f8f9fa);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--navy);
    text-align: left;
    white-space: nowrap;
  }
  .responsive-table tr:last-child td {
    border-bottom: none;
  }
  .responsive-table tr:hover {
    background-color: #f9fbfd;
  }
  .responsive-table a {
    color: var(--blue);
    text-decoration: none;
  }
  .responsive-table a:hover {
    text-decoration: underline;
    color: var(--navy);
  }
}

/* ================== Akademik Dergiler Sayfası ================== */
/* Journal Grid */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding: 0 24px 60px;
}
.journal-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  background: #fff;
}
.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.journal-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.journal-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.journal-title {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0;
  color: var(--navy);
}
