/* ====== Ribbons (shared) ====== */
.ribbon_One,
.ribbon_Two {
    display: flex;
    align-items: center;
    gap: clamp(12px, 3vw, 30px);               /* space between image and text */
    padding-block: clamp(16px, 3vw, 40px);     /* top/bottom padding */
    padding-inline: clamp(24px, 6vw, 120px);   /* left/right padding */
}

/* Layout differences */
.ribbon_One {
    justify-content: flex-start;
}

.ribbon_Two {
    justify-content: space-between;
}

/* ====== Links ====== */
a {
    color: rgb(201, 87, 201);
    text-decoration: none;
}
a:hover,
a:focus-visible {
    text-decoration: underline;
}

/* ====== Images ====== */
.ribbon_One img {
    width: clamp(200px, 25vw, 366px);
    height: auto;
    object-fit: contain;
}

.ribbon_Two img {
    width: clamp(180px, 22vw, 256px);
    height: auto;
    object-fit: contain;
}

/* ====== Text blocks ====== */
.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Side-specific alignment for copy */
.ribbon_One .text {
    align-items: flex-start;
    text-align: left;
}

.ribbon_Two .text {
    align-items: flex-end;
    text-align: right;
}

/* Paragraphs */
p {
    margin: 4px 0;
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: var(--paper);
    opacity: 0.9;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 24px;
    max-width: 650px; /* Adjust as needed */
    width: 100%;
}

.grid-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    max-width: 350px; /* Prevents buttons from being too wide */
    width: 100%;
    background: #222e3a;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    text-align: center;
    padding: 16px;
    box-sizing: border-box;
}

.grid-btn:hover, .grid-btn:focus {
    background: #3a4a5a;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    outline: none;
}

.coming-soon {
    background: #444c56;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
}

.btn-logo {
    width: 24px;
    height: 24px;
    max-width: 48px;
    max-height: 48px;
    margin-right: 8px;
    object-fit: contain;
    flex-shrink: 1;
    display: block;
}