/* ==========================================================================
   Montreal Muslims — pages.css
   Page-specific styles: home, events/calendar, posts feed, photos,
   profile, members, messages, admin.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Home: slideshow
   -------------------------------------------------------------------------- */
.slideshow {
  position: relative;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.slideshow .slide-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slideshow .slide-item.active {
  opacity: 1;
}

.slideshow .slide-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 4, 71, 0.75) 0%, rgba(3, 4, 71, 0.05) 55%);
}

.slide-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  color: #fff;
}

.slide-caption h2 {
  color: #fff;
  font-size: 28px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.slide-caption p {
  margin: 6px 0 12px;
  font-size: 15px;
  color: #e8e9ff;
}

.slideshow-controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slideshow-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(3, 4, 71, 0.55);
  color: var(--gold);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slideshow-controls button:hover {
  background: var(--gold);
  color: var(--navy-darker);
}

.slideshow-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 3;
}

.slideshow-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slideshow-dots span.active {
  background: var(--gold);
}

/* --------------------------------------------------------------------------
   Home: hero strip under slideshow, members, about preview, contact
   -------------------------------------------------------------------------- */
.members-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.members-avatars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.members-count {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
}

.members-count small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.about-preview p {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 14px;
}

.contact-box {
  background: linear-gradient(135deg, var(--navy-darker), var(--navy));
  color: #e8e9ff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--navy-dark);
}

.contact-box h2 {
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-box a {
  color: var(--gold);
  font-weight: 800;
}

.contact-box p {
  margin-bottom: 8px;
}

/* Prayer times widget */
.prayer-times-card .prayer-date {
  color: var(--text-muted);
  font-size: 13.5px;
  margin: 4px 0 12px;
}

.prayer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
}

.prayer-row:nth-child(odd) {
  background: var(--navy-soft);
}

.prayer-row .prayer-name {
  font-weight: 800;
  color: var(--navy);
}

.prayer-row .prayer-time {
  font-weight: 700;
  color: var(--gold-dark);
}

.prayer-row.next-prayer {
  background: var(--navy);
}

.prayer-row.next-prayer .prayer-name,
.prayer-row.next-prayer .prayer-time {
  color: var(--gold);
}

/* Sidebar upcoming events mini list */
.mini-event {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.mini-event:last-child {
  border-bottom: none;
}

.mini-event-date {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.mini-event-date .d {
  font-size: 19px;
  font-weight: 800;
  color: var(--gold);
}

.mini-event-date .m {
  font-size: 11px;
  text-transform: uppercase;
}

.mini-event h4 {
  font-size: 14.5px;
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--text);
}

.mini-event p {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Events page: calendar + list
   -------------------------------------------------------------------------- */
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.calendar-header h3 {
  font-size: 20px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-dow {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 6px 0;
}

.calendar-cell {
  min-height: 86px;
  background: #fbfbfe;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px;
  font-size: 12.5px;
  position: relative;
  overflow: hidden;
}

.calendar-cell.other-month {
  opacity: 0.42;
}

.calendar-cell.today {
  border-color: var(--gold);
  border-width: 2px;
  background: var(--gold-soft);
}

.calendar-cell .day-num {
  font-weight: 800;
  color: var(--navy);
}

.calendar-event {
  display: block;
  margin-top: 3px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.calendar-event:hover {
  background: var(--gold);
  color: var(--navy-darker);
}

/* Event cards (list view + homepage) */
.event-card {
  display: flex;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 18px;
}

.event-card-img {
  width: 220px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  min-height: 160px;
}

.event-card-body {
  padding: 18px 18px 18px 0;
  flex: 1;
  min-width: 0;
}

.event-card-body h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.event-meta i {
  color: var(--gold-dark);
  margin-right: 5px;
}

.event-card-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
}

.event-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   Posts (community feed)
   -------------------------------------------------------------------------- */
.composer-prompt {
  display: flex;
  align-items: center;
  gap: 12px;
}

.composer-prompt .prompt-input {
  flex: 1;
  background: var(--navy-soft);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.composer-prompt .prompt-input:hover {
  border-color: var(--navy);
  background: #fff;
}

.composer-tabs {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.composer-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.composer-tab-btn:hover {
  background: var(--navy-soft);
  color: var(--navy);
}

.composer-tab-btn i {
  color: var(--gold-dark);
  font-size: 16px;
}

.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  margin-bottom: 18px;
}

.post-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}

.post-head .post-author {
  font-weight: 800;
  color: var(--navy);
  font-size: 15px;
}

.post-head .post-when {
  font-size: 12.5px;
  color: var(--text-muted);
}

.post-head .spacer {
  flex: 1;
}

.post-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.post-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  white-space: pre-wrap;
  word-wrap: break-word;
}

.post-images {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.post-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
}

.post-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 700;
  word-break: break-all;
}

.post-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.post-foot button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13.5px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 999px;
}

.post-foot button:hover {
  background: var(--navy-soft);
  color: var(--navy);
}

.post-foot button.liked {
  color: var(--danger);
}

.comments-area {
  margin-top: 12px;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}

.comment {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.comment-bubble {
  background: var(--navy-soft);
  border-radius: 14px;
  padding: 8px 14px;
  flex: 1;
  min-width: 0;
}

.comment-bubble .comment-author {
  font-weight: 800;
  font-size: 13px;
  color: var(--navy);
}

.comment-bubble p {
  font-size: 14px;
  word-wrap: break-word;
}

.comment-form {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.comment-form input {
  border-radius: 999px;
}

.image-preview-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.image-preview-row .preview-thumb {
  position: relative;
}

.image-preview-row img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.image-preview-row .remove-img {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  border: none;
  font-size: 12px;
  cursor: pointer;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Photos: albums & gallery
   -------------------------------------------------------------------------- */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.album-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.album-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.album-cover {
  height: 160px;
  background: linear-gradient(135deg, var(--navy-soft), var(--gold-soft));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 34px;
}

.album-card-body {
  padding: 14px 16px;
}

.album-card-body h3 {
  font-size: 16px;
  margin-bottom: 3px;
}

.album-card-body p {
  font-size: 12.5px;
  color: var(--text-muted);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.photo-tile {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.photo-tile:hover img {
  transform: scale(1.04);
}

.photo-tile .photo-del {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(192, 57, 43, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: none;
}

.photo-tile:hover .photo-del {
  display: block;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(3, 4, 71, 0.92);
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox .lightbox-close {
  position: absolute;
  top: 18px;
  right: 26px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 36px;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Profile
   -------------------------------------------------------------------------- */
.profile-cover {
  height: 210px;
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(195, 147, 48, 0.35), transparent 45%),
    linear-gradient(135deg, var(--navy-darker), var(--navy) 60%, var(--navy-dark));
  position: relative;
  overflow: hidden;
}

.profile-cover::after {
  content: "☪";
  position: absolute;
  right: 34px;
  top: 18px;
  font-size: 120px;
  color: rgba(195, 147, 48, 0.25);
}

.profile-head {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  padding: 0 28px 22px;
  margin-bottom: 22px;
}

.profile-head-row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: -55px;
}

.profile-avatar-wrap {
  position: relative;
}

.profile-avatar-wrap .avatar-edit-btn {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--gold);
  color: var(--navy-darker);
  cursor: pointer;
  font-size: 14px;
}

.profile-id {
  flex: 1;
  min-width: 200px;
  padding-bottom: 6px;
}

.profile-id h1 {
  font-size: 26px;
}

.profile-id .profile-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-actions {
  display: flex;
  gap: 10px;
  padding-bottom: 10px;
}

.profile-bio {
  margin-top: 14px;
  color: var(--text);
  line-height: 1.65;
}

.profile-info-list {
  list-style: none;
}

.profile-info-list li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}

.profile-info-list li:last-child {
  border-bottom: none;
}

.profile-info-list i {
  color: var(--gold-dark);
  width: 20px;
  text-align: center;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Members directory
   -------------------------------------------------------------------------- */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 18px;
}

.member-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 16px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.member-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.member-card .avatar,
.member-card .avatar-placeholder {
  width: 74px;
  height: 74px;
  font-size: 26px;
  margin: 0 auto 10px;
}

.member-card h3 {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--text);
}

.member-card .member-since {
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0 12px;
}

.member-card .member-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Messages
   -------------------------------------------------------------------------- */
.messages-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: calc(100vh - var(--header-h) - 140px);
  min-height: 480px;
}

.conv-list {
  border-right: 1px solid var(--border);
  overflow-y: auto;
}

.conv-list-head {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.conv-list-head h2 {
  font-size: 18px;
}

.conv-item {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 13px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

.conv-item:hover {
  background: var(--navy-soft);
}

.conv-item.active {
  background: var(--navy-soft);
  border-left: 4px solid var(--gold);
  padding-left: 12px;
}

.conv-item .conv-name {
  font-weight: 800;
  font-size: 14.5px;
  color: var(--text);
}

.conv-item .conv-preview {
  font-size: 12.5px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
}

.thread-pane {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.thread-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--navy-soft);
}

.thread-head h3 {
  font-size: 16px;
}

.thread-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fbfbfe;
}

.msg-bubble {
  max-width: 72%;
  padding: 10px 16px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.5;
  word-wrap: break-word;
}

.msg-bubble.mine {
  align-self: flex-end;
  background: var(--navy);
  color: #fff;
  border-bottom-right-radius: 5px;
}

.msg-bubble.theirs {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-bottom-left-radius: 5px;
}

.msg-time {
  font-size: 10.5px;
  opacity: 0.65;
  display: block;
  margin-top: 3px;
}

.thread-compose {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.thread-compose input {
  border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Admin
   -------------------------------------------------------------------------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: linear-gradient(135deg, var(--navy-darker), var(--navy));
  border-radius: var(--radius);
  padding: 20px;
  color: #fff;
  border-bottom: 3px solid var(--gold);
}

.stat-card .stat-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
}

.stat-card .stat-label {
  font-size: 13px;
  color: #d8daf5;
  font-weight: 700;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th {
  text-align: left;
  padding: 11px 12px;
  background: var(--navy-soft);
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: #fbfbfe;
}

.table-scroll {
  overflow-x: auto;
}

/* --------------------------------------------------------------------------
   Page hero (about/inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(195, 147, 48, 0.3), transparent 40%),
    linear-gradient(135deg, var(--navy-darker), var(--navy));
  border-radius: var(--radius);
  color: #fff;
  padding: 44px 36px;
  margin-bottom: 26px;
  border-bottom: 4px solid var(--gold);
}

.page-hero h1 {
  color: #fff;
  font-size: 32px;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  margin-top: 8px;
  color: #d8daf5;
  max-width: 640px;
  line-height: 1.6;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.about-photo-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
  .slideshow {
    height: 300px;
  }

  .slide-caption h2 {
    font-size: 21px;
  }

  .event-card {
    flex-direction: column;
  }

  .event-card-img {
    width: 100%;
    height: 170px;
  }

  .event-card-body {
    padding: 0 18px 18px;
  }

  .messages-layout {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .conv-list {
    border-right: none;
    border-bottom: 1px solid var(--border);
    max-height: 260px;
  }

  .thread-pane {
    height: 60vh;
  }

  .calendar-cell {
    min-height: 58px;
    font-size: 11px;
  }

  .calendar-event {
    display: none;
  }

  .calendar-cell.has-event::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
  }

  .profile-head-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-actions {
    justify-content: center;
  }

  .page-hero {
    padding: 30px 22px;
  }

  .page-hero h1 {
    font-size: 25px;
  }
}
