.tesim-contact-section {
width: 100%;
padding: 40px 16px;
background: transparent;
box-sizing: border-box;
font-family: inherit;
}
.tesim-contact-section *,
.tesim-contact-section *::before,
.tesim-contact-section *::after {
box-sizing: border-box;
}
.tesim-contact-wrapper {
width: 100%;
max-width: 420px;
margin: 0 auto;
}
.tesim-contact-button {
width: fit-content;
margin-left: auto;
margin-bottom: 10px;
padding: 9px 18px;
border-radius: 10px;
border: 1px solid rgba(31, 31, 31, 0.22);
background: #ffffff;
color: #111111;
font-size: 15px;
font-weight: 700;
line-height: 1;
box-shadow: 0 8px 22px rgba(31, 31, 31, 0.08);
}
.tesim-contact-card {
width: 100%;
padding: 10px;
border-radius: 18px;
background: rgba(255, 255, 255, 0.94);
border: 1px solid rgba(255, 255, 255, 0.85);
box-shadow:
0 18px 45px rgba(31, 31, 31, 0.12),
inset 0 1px 0 rgba(255, 255, 255, 0.9);
backdrop-filter: blur(14px);
}
.tesim-contact-item {
display: flex;
align-items: center;
gap: 14px;
padding: 14px 14px;
border-radius: 14px;
text-decoration: none;
transition: background 0.22s ease, transform 0.22s ease;
}
.tesim-contact-item:hover {
background: #fff7ef;
transform: translateX(3px);
}
.tesim-contact-icon {
flex: 0 0 auto;
width: 38px;
height: 38px;
border-radius: 12px;
background: rgba(255, 138, 43, 0.12);
display: flex;
align-items: center;
justify-content: center;
}
.tesim-contact-icon svg {
width: 21px;
height: 21px;
fill: #ff7a1a;
}
.tesim-contact-text {
min-width: 0;
}
.tesim-contact-text span {
display: block;
margin-bottom: 4px;
color: #777777;
font-size: 12px;
font-weight: 800;
line-height: 1;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.tesim-contact-text strong {
display: block;
color: #1f1f1f;
font-size: 15px;
font-weight: 800;
line-height: 1.35;
word-break: break-word;
}
.tesim-contact-link .tesim-contact-text strong {
color: #1f1f1f;
}
@media screen and (max-width: 480px) {
.tesim-contact-section {
padding: 28px 12px;
}
.tesim-contact-wrapper {
max-width: 100%;
}
.tesim-contact-button {
margin-right: 0;
font-size: 14px;
padding: 8px 15px;
}
.tesim-contact-card {
border-radius: 16px;
padding: 8px;
}
.tesim-contact-item {
gap: 12px;
padding: 13px 12px;
border-radius: 13px;
}
.tesim-contact-icon {
width: 36px;
height: 36px;
border-radius: 11px;
}
.tesim-contact-text strong {
font-size: 14px;
}
}