﻿.landing-card {
    border-radius: 10px !important; /* softer corners than the base 10px */
    box-shadow: none;
    border: none;
}

.landing-card-header {
    padding: 28px 32px 8px !important;
    background-color: transparent !important;
    border: none !important;
}

.landing-card-body {
    align-content: center;
    justify-content: center;
    flex: auto;
    flex-direction: column;
    text-align: center;
    height: 100%;
    width: 100%;
    padding: 32px !important;
}

.landing-card-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em;
    margin-bottom: 15px !important;
}

.landing-card-footer {
    padding: 12px 32px 24px !important;
    background-color: transparent !important;
    border: none !important;
}

.landing-info-body {
    padding: 8px 32px 16px !important;
    display: flex;
    flex-direction: column;
    gap: 14px; /* even breathing room between rows */
}

.landing-info-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.landing-info-icon {
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
}

.landing-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.9rem;
    line-height: 1.1;
}

    .landing-info-text > span:first-child {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        line-height: 1.05;
    }

.landing-info-value {
    font-size: 0.9rem;
    text-decoration: none !important;
    word-break: break-all;
}

    .landing-info-value:hover {
        text-decoration: underline !important;
    }

.landing-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 10px;
}

.landing-social-btn-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    gap: 5px;
    height: 20px;
    text-decoration: none !important;
    transition: opacity 0.15s ease, background-color 0.15s ease;
    color: var(--prim-color);
}
.landing-social-btn-container a:hover {
    text-decoration: underline !important;
}

@media (max-width: 600px) {
    .landing-social-btn-container a > span {
        visibility: hidden;
        width: 0px;
    }
    .landing-social-row {
        gap: 5px;
    }
}


.landing-footer-note {
    margin: 0 !important;
    background-color: transparent !important;
    border: none !important;
}

.landing-page-button{
    border-width: 1px;
    max-width: 60%;
    width: 60%;
    height: 45px
}

@media (max-width: 600px) {
    .landing-page-button{
        max-width: 100%;
        width: auto;
    }
}