/*
Theme Name: Team2Swift Theme
Description: Lightweight Team2Swift theme used to replace legacy theme dependencies.
Version: 1.0.0
*/

html,
body {
    background: #000;
}

.site-main {
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 16px 80px;
    color: #fff;
    font-family: "SF Pro Display", sans-serif;
    font-size: 17px;
    line-height: 1.55;
}

.site-header {
    position: relative;
}

.site-header .t2s-header-inner {
    gap: 32px;
}

.site-header .t2s-header-logo {
    display: block;
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .site-header .t2s-header-inner {
        gap: 48px;
    }
}

.site-main p {
    margin: 0 0 18px;
}

.site-main strong {
    font-weight: 600;
}

.site-main a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-main a:hover {
    color: #60a5fa;
}

.t2s-site-footer a {
    color: #1e73be;
    text-decoration: none;
}

.t2s-site-footer nav a {
    color: #fff;
}

.t2s-site-footer nav li:last-child a {
    color: #1e73be;
}

.t2s-site-footer a:hover {
    color: #60a5fa;
}

.t2s-cookie-notice {
    position: fixed !important;
    right: 24px !important;
    bottom: 24px !important;
    z-index: 10000000 !important;
    box-sizing: border-box;
    width: min(360px, calc(100vw - 32px));
    padding: 22px;
    color: #fff;
    font-family: "SF Pro Display", sans-serif;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .2s ease, transform .2s ease;
}

.t2s-cookie-notice[hidden] {
    display: none;
}

.t2s-cookie-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.t2s-cookie-notice__content {
    position: relative;
    z-index: 2;
}

.t2s-cookie-notice__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.t2s-cookie-notice__description {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.45;
}

.t2s-cookie-notice__button {
    width: 100%;
    margin-top: 18px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 999px;
    background: #0a84ff;
    box-shadow: 0 6px 16px rgba(10, 132, 255, .25);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    transition: background-color .2s ease, transform .2s ease;
}

.t2s-cookie-notice__button:hover,
.t2s-cookie-notice__button:focus-visible {
    background: #0070dd;
}

.t2s-cookie-notice__button:active {
    transform: scale(.98);
}

@media (max-width: 767px) {
    .t2s-cookie-notice {
        top: auto !important;
        right: 15px !important;
        bottom: 15px !important;
        width: min(320px, calc(100vw - 30px));
    }
}

@media (max-width: 767px) {
    .site-main {
        padding: 40px 16px 56px;
        font-size: 16px;
    }
}
