@media (max-width: 991px) {

  nav {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
  }

  .logo img {
    height: 59px;
  }

  .hamburger {
    display: block;
  }

  .close-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    display: none;
    z-index: 9999;
  }

  .menu {
    position: fixed;
    inset: 0;
    height: 100vh;
    background: #cfdcdc;
    transform: translateX(100%);
    transition: .4s;
    padding-top: 100px;
    overflow-y: auto;
  }

  .menu.active {
    transform: translateX(0);
    height: 100vh;
  }

  .menu,
  .menu * {
    color: #111 !important;
  }

  .menu>ul {
    flex-direction: column;
    padding: 0 20px;
    gap: 0;
  }

  .menu>ul>li {
    width: 100%;
    padding: 12px 15px;
    letter-spacing: 2px;
    display: block;
  }

  .menu>ul>li:hover {
    background: #848686;
  }

  .dropdown {
    display: none;
    position: relative;
    padding-left: 25px;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
  }

  .has-dropdown {
    background: transparent;
  }

  .has-dropdown.open {
    background: transparent;
  }

  .has-dropdown::after {
    position: absolute;
    right: 15px;
    top: 20px;
    transform: translateY(-50%);
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .dropdown li {
    font-size: 11px;
    padding: 10px 0;
    display: block;
  }

  .dropdown li:hover {
    color: white;
  }

  .casa-about-wrapper {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .casa-about-visuals {
    order: 2;
    max-width: 600px;
    margin: 40px auto 0;
  }

  .casa-about-info {
    text-align: center;
  }

  .casa-feature-icon::after {
    display: none;
  }

  .casa-img-sub {
    height: 170px;
  }

  .casa-about-footer {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .casa-trust-tags {
    align-items: center;
  }

  .elegant-line-breaker {
    margin: 10px 0px;
  }

  #themed-rooms {
    padding: 60px 20px;
  }

  .rooms-header {
    margin-bottom: 40px;
  }

  .rooms-header h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .rooms-grid-container {
    flex-direction: column;
    gap: 20px;
  }

  .rooms-col-main,
  .rooms-col-grid {
    width: 100% !important;
    flex: 1 1 100% !important;
  }

  .rooms-row {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .main-room {
    height: 400px;
  }

  .small-room {
    height: 300px;
  }

  .room-overlay {
    opacity: 1 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%) !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  .room-overlay h3 {
    transform: translateY(0) !important;
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
    letter-spacing: 2px !important;
    padding-bottom: 0 !important;
  }

  .room-overlay h3::after {
    display: none !important;
  }

  .room-overlay p {
    display: none !important;
  }

  .room-explore-btn {
    transform: translateY(0) !important;
    padding: 10px 25px !important;
    font-size: 11px !important;
  }

  .room-label {
    display: none !important;
  }

  @media (max-width: 600px) {
    .main-room {
      height: 300px;
    }
  }


  .amenities-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 45px 15px;
  }

  .gallery-title {
    font-size: 32px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }





  .cuisine-text h2 {
    font-size: 36px;
  }

  .villa-info h2 {
    font-size: 36px !important;
  }


  .hero-content h2 {
    font-size: 36px;
  }

  .testimonial-section {
    padding: 50px 15px;
  }

  .testimonial-section h2 {
    font-size: 27px;
  }

  .testimonial-rotator {
    width: 100%;
    height: 300px;
    position: relative;
    perspective: 1000px;
  }

  .t-card {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    animation: mobileFlip 20s infinite;
    backface-visibility: hidden;
    will-change: transform, opacity;
  }

  .c1 {
    animation-delay: 0s;
  }

  .c2 {
    animation-delay: 5s;
  }

  .c3 {
    animation-delay: 10s;
  }

  .c4 {
    animation-delay: 15s;
  }


  @keyframes mobileFlip {

    0% {
      opacity: 0;
      transform: rotateY(90deg);
    }

    8% {
      opacity: 1;
      transform: rotateY(0deg);
    }

    30% {
      opacity: 1;
      transform: rotateY(0deg);
    }

    38% {
      opacity: 0;
      transform: scale(.95);
    }

    100% {
      opacity: 0;
      transform: scale(.95);
    }

  }

  .casa-about-section {
    padding: 60px 20px;
  }

  .casa-main-title {
    font-size: 32px;
  }

  .casa-img-main {
    height: 350px;
  }

  .casa-img-small-wrap {
    width: 60%;
    right: 0;
    bottom: -20px;
  }

  .casa-feature-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 15px;
  }

  .casa-feature-item:nth-child(2) {
    text-align: right;
  }

  .casa-experience-badge {
    left: 0;
    top: 20px;
    padding: 15px;
  }

  .experience-heads {
    width: 100%;
    padding: 10px;
  }

  .experience-heads h2 {
    font-size: 40px;
    padding-bottom: 10px;
  }

  .experience-heads p {
    font-size: 16px;
  }

  .experience-list {
    padding: 25px 10px;
  }

  .experience-row {
    gap: 10px;
  }

  .experience-row,
  .experience-row:nth-child(even) {
    flex-direction: column;
  }

  .exp-image img {
    height: 250px;
  }


  .featured-blog {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-text {
    text-align: center;
  }

  .footer-brand {
    font-size: 108px;
    bottom: -18px;
  }


  .hero-content h1 {
    font-size: 38px;
  }

  .luxury-era-grid {
    grid-template-columns: 1fr 1fr;
  }

  .room-row {
    flex-direction: column;
    gap: 40px;
  }

  .room-image,
  .room-text {
    width: 100%;
  }

  .room-text {
    text-align: center;
  }

  .details-grid {
    flex-direction: column;
  }

  .glass-card {
    padding: 35px;
  }

  .swiper-slide img {
    height: 320px;
  }

  .home-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .villa-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .villa-text h2 {
    font-size: 32px;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 70px auto;
  }

  .reverse {
    direction: ltr;
  }

  .full-exp-img {
    height: 300px !important;
    padding: 0px 10px;
    overflow: hidden;
  }

  .theatre-wrapper {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    width: 95%;
  }

  .nav-col {
    height: 240px;
    width: 100%;
    padding-right: 0;
    margin-top: 20px;
  }

  .nav-item {
    height: 80px;
    padding: 0 15px;
    gap: 12px;
  }

  .nav-item h3 {
    font-size: 16px;
    white-space: normal;
  }

  .nav-icon {
    font-size: 22px;
  }

  .stage-frame {
    height: 350px;
    width: 100%;
  }

  .stage-overlay {
    padding: 25px;
  }

  #activeTitle {
    font-size: 24px;
  }

  #activeDesc {
    font-size: 14px;
    line-height: 1.4;
  }

  .casa-experience-theatre {
    padding: 0px;
  }
}

@media (max-width: 575px) {


  .experience-content {
    flex-direction: column;
  }

  .experience-image,
  .experience-text {
    width: 100%;
  }

  .experience-text {
    height: 430px;
    padding: 40px 30px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 26px !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: 45% !important;
  }

  .amenities-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .gallery-title {
    font-size: 26px;
  }

  #galleryModal img {
    max-width: 95%;
  }

  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .hero-content h2 {
    font-size: 26px;
  }

  .hero-btn {
    padding: 12px 30px;
  }

  .footer-brand {
    font-size: 50px !important;
    bottom: -5px !important;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .room-text h2 {
    font-size: 22px;
  }

  .room-text p {
    font-size: 15px;
  }

  .details-heading h2 {
    font-size: 22px;
  }

  .swiper-slide img {
    height: 220px;
  }

  .blog-image img {
    height: 250px;
  }
}


@media(max-width:768px) {

  .gallery-headings h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .luxury-era {
    padding: 80px 6%;
  }

  .luxury-era-heading h2 {
    font-size: 32px;
  }

  .luxury-era-grid {
    grid-template-columns: 1fr;
  }

  .luxury-era-card {
    height: 420px;
  }



  #lux-gallery {
    padding: 30px 15px 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 12px;
  }


  .gallery-grid img {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item {
    height: 200px;
  }

  .gallery-item.tall {
    height: 260px;
  }

  .gallery-item.wide {
    grid-column: auto;
  }


  .experience-headings h2 {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .experience-headings p,
  .gallery-headings p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 90%;
  }

  #site-footer {
    padding: 50px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }



  .cuisine-section {
    padding: 80px 25px;
  }

  .cuisine-gallery {
    margin-top: 30px;
  }

  .cuisine-inner {
    grid-template-columns: 1fr;
  }

  .reels-grid {
    grid-template-columns: 1fr;
    padding: 0px 20px;
  }

  .about-hero h1,
  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .villa-info {
    padding: 80px 6%;
  }

  .villa-top {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .villa-features {
    gap: 25px !important;
  }

  .feature-item {
    padding-left: 18px !important;
  }

  .feature-item h4 {
    font-size: 17px !important;
  }


  .hero-content h2 {
    font-size: 32px;
  }



  .guest-box {
    padding: 40px 30px;
    margin: 20px;
  }

  .guest-box h2 {
    font-size: 32px;
  }


  .info-bar,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }

  .galleryModal .nav {
    top: auto;
    bottom: 30px;
    transform: none;
    font-size: 26px;
  }

  .galleryModal .prev {
    left: 35%;
  }

  .galleryModal .next {
    right: 35%;
  }

  .fa-chevron-left:before {
    position: absolute;
    bottom: -300px !important;
    left: 100px;
    font-size: 20px;
  }

  .fa-chevron-right:before {
    position: absolute;
    font-size: 20px;
    bottom: -300px !important;
    right: 100px;
  }

  #galleryModalImage {
    margin-bottom: 60px;
  }


  .amenities-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .amenities-page-grid {
    grid-template-columns: 1fr !important;
  }

  .amenities-headings {
    padding: 0px 20px;
  }

  .amenities-headings h2 {
    font-size: 32px;
  }

  .amenities-page-grid .amenity-card:nth-child(2) {
    margin-top: 0px;
  }

  .amenities-page-grid .amenity-card:nth-child(5) {
    margin-top: 0px;
  }

  .amenities-page-grid .amenity-card:nth-child(8) {
    margin-top: 0px;
  }

  .amenities-page-grid .amenity-card:nth-child(11) {
    margin-top: 0px;
  }

  .amenities-page-grid .amenity-card:nth-child(14) {
    margin-top: 0px;
  }


  .blog-hero h1 {
    font-size: 36px;
  }

  .blog-hero p {
    font-size: 15px;
    padding: 10px 12px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-wrapper {
    padding: 40px 15px;
  }

  .footer-brand {
    font-size: 74px;
    bottom: -11px;
  }


  .room-hero {
    align-items: flex-end;
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .room-main {
    padding: 70px 0;
  }

  .room-text h2 {
    font-size: 26px;
  }

  .room-text p {
    font-size: 16px;
  }

  .room-details-section {
    padding: 80px 0;
  }

  .details-heading h2 {
    font-size: 26px;
  }

  .glass-card {
    padding: 25px;
  }

  .glass-card h3 {
    font-size: 20px;
  }

  .room-gallery {
    padding: 60px 0;
  }

  .swiper-slide img {
    height: 250px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .home-blogs {
    padding: 60px 20px;
  }

  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-heading h2 {
    font-size: 28px;
  }

  .vm-artistic {
    height: auto;
    padding: 100px 0;
  }

  .vm-content {
    position: relative;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }

  .vm-vision,
  .vm-mission {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    text-align: center;
    max-width: 100%;
  }

  .vm-vision h2,
  .vm-mission h2 {
    font-size: 32px;
  }

  .vm-arrow {
    position: relative;
    height: 140px;
    left: 0px;
    transform: rotate(100deg);
  }

  .faq-hero {
    height: 60vh !important;
    padding: 30px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 18px;
  }

  .nav-col {
    height: 210px;
  }

  .nav-item {
    height: 70px;
  }

  .stage-frame {
    height: 300px;
  }

}

/* --- Relocated from style.css --- */

@media (max-width: 1200px) {
  #themed-rooms {
    min-height: auto;
  }

  .themed-rooms-container {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0;
  }

  .rooms-center-content {
    grid-column: span 2;
    order: -1;
    position: static;
    box-shadow: none;
  }

  .room-item {
    position: static;
    width: 100%;
    height: 350px;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .gallery-carousel .owl-nav button {
    width: 38px;
    height: 38px;
    top: 40%;
    line-height: 38px;
  }

  .gallery-carousel .owl-nav button.owl-prev {
    left: 5px;
  }

  .gallery-carousel .owl-nav button.owl-next {
    right: 5px;
  }

  .gallery-image {
    height: 320px;
  }

  .close-modal {
    right: 20px;
    top: 15px;
    font-size: 40px;
  }

  /* Hide arrows completely on mobile */
  .gallery-carousel .owl-nav {
    display: none !important;
  }

  .gallery-carousel {
    margin-bottom: 30px;
  }

  .gallery-footer {
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .themed-rooms-container {
    grid-template-columns: 1fr;
  }

  .rooms-center-content {
    grid-column: span 1;
  }
}

/* --- Relocated from experience.css --- */
@media (min-width: 1600px) {
  .exp-tall {
    width: 260px;
    height: 380px;
  }

  .exp-wide {
    width: 380px;
    height: 240px;
  }

  .exp-med {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 1024px) {
  .exp-list-row {
    flex-direction: column !important;
  }

  .exp-col {
    width: 100% !important;
    flex: 0 0 auto;
    height: 400px;
  }

  .exp-text-col {
    padding: 40px 20px;
    height: auto;
  }

  .exp-tall,
  .exp-wide,
  .exp-med {
    width: 85vw;
    height: 350px;
  }
}

/* --- Relocated from faq.css --- */
@media (max-width: 991px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* --- Relocated from rooms.css --- */
@media (max-width: 768px) {
  .hero-bg-text {
    font-size: 8vw;
    letter-spacing: 5px;
    opacity: 0.3;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.1);
  }

  .room-hero .hero-content h1 {
    font-size: 36px;
    letter-spacing: 4px;
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .room-hero.aos-animate .hero-line {
    width: 60px;
  }
}

/* --- Relocated from style.css --- */
@media (max-width: 768px) {
  .page-hero h1,
  .page-hero h2 {
    font-size: 2.5rem !important;
  }

  .page-hero {
    height: 50vh !important;
  }
}

@media (max-width: 991px) {
  .rooms-watermark {
    display: none !important;
  }

  .rooms-center-logo {
    display: none !important;
  }

  .room-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
    margin: 20px auto !important;
    display: block !important;
  }
}

/* --- Relocated from about.css (Awards Section) --- */
@media (max-width: 1024px) {

  .awards-content,
  .featured-bottom {
    flex-direction: column;
    text-align: center;
  }

  .awards-label {
    border: none;
    padding: 0;
    text-align: center;
  }

  .featured-label-centered {
    border-top: 4px solid #000;
    padding-top: 20px;
    margin-top: 0px;
  }

  .awards-cards {
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .featured-info-wrap {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .awards-main-title {
    margin-bottom: 50px;
  }

  .awards-main-title h2 {
    font-size: 36px;
  }

  .awards-label h3,
  .featured-label-centered h3 {
    font-size: 30px;
  }

  .award-card {
    width: 100%;
    max-width: 350px;
  }

  .magazine-img {
    max-width: 95%;
  }

  .featured-info-wrap p {
    font-size: 16px;
    padding: 0 15px;
  }

  .journal-logo {
    font-size: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .design-box {
    font-size: 20px;
    padding: 1px 6px;
  }

  .journal-subtitle {
    font-size: 7.5px;
    letter-spacing: 2.5px;
  }

  .featured-label-centered h3 {
    font-size: 28px;
  }
}

/* Magazine & Awards Responsiveness */
@media (max-width: 1100px) {
  .m-book-container {
      padding-left: 0;
  }
  .awards-content {
      flex-direction: column;
      text-align: center;
  }
  .awards-label {
      border-left: none;
      border-top: 5px solid #000;
      padding: 35px 0 15px;
  }
}

@media (max-width: 768px) {
  .m-book {
      width: 160px;
      height: 240px;
  }
  
  /* Adjusted shift for much smaller mobile book width (half of 160px) */
  .m-book.opened {
      transform: translateX(80px);
  }

  .memory-page, .end-page {
      padding: 5px !important;
  }

  .mb-flower-logo, .mb-logo-end {
      width: 20px !important;
      margin-bottom: 5px !important;
  }

  .memory-page h4 {
      font-size: 10px !important;
      margin-bottom: 5px !important;
      letter-spacing: 1px !important;
  }

  .memory-page p {
      font-size: 9px !important;
      line-height: 1.2 !important;
      padding: 0 4px !important;
  }

  .end-page h3 {
      font-size: 8px !important;
      letter-spacing: 3px !important;
      margin-bottom: 10px !important;
  }

  .mb-reset-btn {
      font-size: 8px !important;
      padding: 6px 15px !important;
      letter-spacing: 1.5px !important;
  }

  .mb-decorative-line {
      display: none !important;
  }

  .mb-collage {
      gap: 2px !important;
      padding: 3px !important;
  }
  
  .mb-collage-item {
      border-width: 1px !important;
  }

  .mb-cover-logo {
      width: 40px !important;
      margin-bottom: 10px !important;
  }

  .mb-page-inside {
      padding: 10px !important;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
  }

  .mb-page-inside .mb-logo {
      width: 25px !important;
      margin-bottom: 8px !important;
  }

  .mb-page-inside h3 {
      font-size: 8px !important;
      letter-spacing: 2px !important;
  }

  /* Reduced Shadows for Mobile Depth */
  .mb-page {
      box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.08) !important;
  }
  
  .mb-page.flipped {
      box-shadow: -2px 5px 15px rgba(0, 0, 0, 0.08) !important;
  }

  .mb-page.mb-cover {
      box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.15) !important;
  }

  .mb-hint {
      display: none !important;
  }

  .magazine-3d-showcase {
      padding: 20px 0px;
      overflow-x: hidden;
  }

  .awards-featured {
    padding: 50px 0px;
  }

  .awards-main-title h2 {
      font-size: 38px;
  }
  .awards-cards {
      flex-direction: column;
      align-items: center;
  }
  .mb-collage {
      gap: 5px;
      padding: 10px;
  }
  .magazine-footer-wrap {
      margin-top: 60px;
      padding: 0 15px;
  }
  .journal-logo {
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .featured-label-end h3 {
      font-size: 24px;
      letter-spacing: 4px;
  }
  .journal-footer-desc {
      font-size: 13px;
      margin: 0px;
  }
  .featured-line-end {
      width: 150px;
  }
}

.mb-hint {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 11px;
  letter-spacing: 3px;
  color: #aaa;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .featured-section.light-theme {
    padding: 80px 0;
  }
  
  .featured-headings h2 {
    font-size: 28px;
  }
  
  .featured-brands {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .brand-item {
    width: 240px;
    height: 100px;
  }

  .journal-brand-wrap {
    min-width: unset !important;
    width: 100% !important;
    max-width: 320px !important;
    transform: none !important;
    margin: 10px 0;
    padding: 25px 15px;
    height: auto;
  }

  .journal-brand-wrap:hover {
    transform: translateY(-5px) !important;
  }

  .journal-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 1.2;
  }

  .design-box {
    font-size: 16px;
    margin-left: 0;
  }

  .journal-subtitle {
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-top: 5px;
  }

  .blog-image img {
    height: 320px;
  }
}