@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,600;6..96,700;6..96,800&display=swap');

.aurora-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
    min-width: 0;
}

.aurora-brand__icon-shell {
    position: relative;
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 22px;
    background: transparent;
    border: none;
    box-shadow: 0 18px 34px rgba(3, 8, 23, 0.28);
}

.aurora-brand__icon-shell::before {
    display: none;
}

.aurora-brand__icon-shell::after {
    display: none;
}

.aurora-brand__icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    filter: drop-shadow(0 10px 22px rgba(14, 33, 52, 0.2));
    transform: none;
}

.aurora-brand__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.aurora-brand__wordmark {
    display: inline-block;
    margin: 0;
    font-family: 'Bodoni Moda', serif;
    font-optical-sizing: auto;
    font-size: 2.24rem;
    line-height: 0.88;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: none;
    white-space: nowrap;
    background: linear-gradient(135deg, #f5fbff 0%, #b8f2ff 24%, #83c9ff 52%, #7c7eff 76%, #d1a6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 28px rgba(29, 52, 90, 0.24);
}

.aurora-brand__wordmark::after {
    content: '';
    display: block;
    width: 72%;
    height: 1px;
    margin-top: 6px;
    background: linear-gradient(90deg, rgba(157, 243, 255, 0.5), rgba(115, 112, 255, 0));
    opacity: 0.72;
}

@media (max-width: 820px) {
    .aurora-brand {
        gap: 12px;
    }

    .aurora-brand__icon-shell {
        width: 54px;
        height: 54px;
        border-radius: 20px;
    }

    .aurora-brand__wordmark {
        font-size: 2rem;
    }
}
