.banner-content {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  margin-bottom: 8px;
}

.banner-logo {
    height: 120px;
    width: auto;
}
.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;     /* Adjust size as needed */
    height: 120px;    /* Makes it a square */
    background-color: rgba(255, 255, 255, 0.59); /* White with 59% opacity */
    border-radius: 16px; /* Optional: rounded corners */
    /*padding: 10px;*/
    box-sizing: border-box;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Preserves aspect ratio */
    filter: brightness(1); /* Optional: enhance visibility */
}
/* Typography */
.app-title {
    font-size: 30px;
    font-weight: 700;
}

.byline {
    font-size: 0.95rem;
    opacity: 0.85;
}

.tagline {
    font-size: 27px;
    font-weight: 750;
    opacity: 0.9;
}

/* Agent info */
.agent-name {
    font-size: 1.05rem;
}

.agent-contact span {
    display: inline-block;
    margin: 0 2px;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .banner-logo {
        height: 60px;
    }

    .app-title {
        font-size: 25px;
    }

    .tagline {
        font-size: 20px;
    }

    .agent-contact {
        font-size: 0.85rem;
    }
    .logo-container {
        width: 60px;
        height: 60px;
    }
}

/* 📱 Tablet fine-tuning */
@media (min-width: 769px) and (max-width: 992px) {
    .banner-logo {
        height: 90px;
    }
    .logo-container {
        width: 90px;
        height: 90px;
    }

    .tagline {
        font-size: 23px;
    }
}
