.box {
    background-color: #01396f;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: clamp(2rem, 5vw, 6rem);
    padding-bottom: clamp(2rem, 5vw, 6rem);
}

.inbox {
    background-color: white;
    padding: clamp(1rem, 3vw, 3rem);
    width: 90%;
    max-width: 1600px;
    border-radius: 10px;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.inbox h1 {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 1000;
    text-transform: uppercase;
    text-align: center;
}

.inbox p {
    font-size: clamp(16px, 2.5vw, 22px);
    font-family: Arial, Helvetica, sans-serif;
}

.left-content {
    flex: 3;
    text-align: justify;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.right-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.right-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.image-caption h2 {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #01396f;
    margin-bottom: 0.25rem;
}

.image-caption p {
    font-size: clamp(14px, 2vw, 16px);
    color: #444;
    margin: 0;
}

.read-more-inline {
    color: #01396f;
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.read-more-inline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #01396f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.read-more-inline:hover::after {
    transform: scaleX(1);
}

.read-more-inline:hover {
    color: #011f3a;
}

/* Responsive stack on mobile */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center; /* optional for better centering on small screens */
  }

  .right-image {
    max-width: 60%; /* 50% might be too small on narrow phones */
  }

  .image-caption {
    display: flex;
    flex-direction: column; /* column is usually better for text */
    align-items: center;
    text-align: center;
  }

  .desktop-only {
    display: none;
  }
}
