.ted-kk {
width: 100%;
box-sizing: border-box;
padding: 30px 24px 28px;
text-align: center;
background: #fff;
font-family: inherit;
}
.ted-kk__line {
width: min(58%, 700px);
height: 1px;
margin: 0 auto 24px;
background: #d7d7d7;
}
.ted-kk__line--bottom {
margin: 24px auto 0;
}
.ted-kk__logo {
display: block;
width: 150px;
max-width: 42vw;
height: auto;
margin: 0 auto 20px;
}
.ted-kk__title {
margin: 0 0 10px;
color: #002b7f;
font-size: clamp(28px, 3vw, 40px);
line-height: 1.15;
font-weight: 700;
letter-spacing: .2px;
}
.ted-kk__description {
margin: 0;
color: #6b625c;
font-size: clamp(15px, 1.4vw, 18px);
line-height: 1.55;
}
.ted-kk__buttons {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 24px;
margin-top: 28px;
}
.ted-kk__button {
position: relative;
display: flex;
align-items: center;
justify-content: center;
min-height: 48px;
padding: 10px 48px 10px 20px;
box-sizing: border-box;
overflow: hidden;
border: 1px solid #c92712;
border-radius: 5px;
background: #c92712;
color: #fff !important;
text-decoration: none !important;
font-size: 15px;
font-weight: 600;
letter-spacing: .15px;
transition:
transform .22s ease,
background-color .22s ease,
box-shadow .22s ease,
border-color .22s ease;
}
.ted-kk__button::after {
content: "→";
position: absolute;
right: 20px;
top: 50%;
opacity: 0;
transform: translate(-8px, -50%);
font-size: 20px;
line-height: 1;
transition: opacity .22s ease, transform .22s ease;
}
.ted-kk__button:hover,
.ted-kk__button:focus {
background: #a91f0d;
border-color: #a91f0d;
color: #fff !important;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
}
.ted-kk__button:hover::after,
.ted-kk__button:focus::after {
opacity: 1;
transform: translate(0, -50%);
}
.ted-kk__button:focus-visible {
outline: 3px solid #002b7f;
outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
.ted-kk__button,
.ted-kk__button::after {
transition: none;
}
}
@media (max-width: 767px) {
.ted-kk {
padding: 24px 16px;
}
.ted-kk__line {
width: 90%;
}
.ted-kk__buttons {
grid-template-columns: 1fr;
gap: 12px;
margin-top: 22px;
}
.ted-kk__button {
min-height: 50px;
}
.ted-kk__logo {
width: 125px;
}
}