:root {
--bg-main: #fff;
--separator: rgb(248, 247, 252);
--text-dark: #222;
--text-light: #555;
--accent: #6200ee;
--accent2: #008bee;
--fira: "Fira Sans", sans-serif;
--lora: "Lora", serif;
--primary-font: "Fira Sans", sans-serif;
--secondary-font: "Lora", serif; }
* {
box-sizing: border-box
}
body {
background-color: var(--bg-main);
margin: 0;
padding: 0;
font-family: var(--lora);
font-size: 16.8px;
line-height: 26.88px;
color: var(--text-dark);
-webkit-font-smoothing: antialiased
}
h1, h2, h3, h4, h5, h6, .site-logo, .nav-links a, .search-input-full, .sidebar-title, .sidebar-post-title, .main-pagination a, .main-pagination span, .tag-link, .widget-title {
font-family: var(--fira) !important;
font-weight: 600 !important
}
.post-date {
font-size: 11px;
color: #888;
font-family: var(--secondary-font);
margin-bottom: 10px
}
.breadcrumb {
font-size: 11px;
color: #ccc
}
.breadcrumb a {
font-size: 11px;
font-weight: 300;
color: var(--accent2)
}
.main-layout {
display: grid;
grid-template-columns: minmax(0, 750px) 320px;
max-width: 1140px;
margin: 40px auto;
gap: 70px;
padding: 0 20px
}
.content-area {
min-width: 0 !important;
overflow: hidden
}
.sidebar-area {
width: 320px
}
.main-header {
border-bottom: 1px solid var(--separator);
height: 70px;
display: flex;
align-items: center;
position: sticky;
top: 0;
background: #fff;
z-index: 1000;
background-color: rgb(229, 246, 255)
}
.header-content-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
max-width: 1140px;
margin: 0 auto;
padding: 0 20px;
position: relative
}
.site-logo {
font-size: 24px;
text-decoration: none;
color: #000;
text-transform: uppercase
}
.nav-links {
display: flex;
list-style: none;
gap: 25px;
margin: 0;
padding: 0
}
.nav-links a {
text-decoration: none;
color: #000;
text-transform: uppercase;
font-size: 14px
}
#search-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 70px;
background: #fff;
display: none;
align-items: center;
z-index: 1100;
padding: 0 20px
}
#search-overlay.is-active {
display: flex
}
.search-form-fullscreen {
display: flex;
align-items: center;
width: 100%;
max-width: 1140px;
margin: 0 auto
}
.search-input-full {
flex-grow: 1;
border: none;
font-size: 18px;
padding: 10px 20px;
outline: none
}
.search-trigger, .search-close, .menu-toggle {
background: none;
border: none;
cursor: pointer;
color: var(--text-dark);
display: flex;
align-items: center
}
.menu-toggle {
display: none
}
.post-item-list {
display: flex;
gap: 25px;
padding: 30px 0;
border-bottom: 1px solid #f0f0f0;
align-items: flex-start;
clear: both;
padding-bottom: 25px;
margin-bottom: 25px
}
.post-item-image {
flex-shrink: 0;
width: 240px;
height: 155px;
flex: 0 0 200px;
overflow: hidden;
border-radius: 4px
}
.post-item-image img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 4px;
object-position: center;
display: block;
transition: transform 0.4s ease, filter 0.4s ease !important
}
.post-item-content h2 {
margin: 0 0 10px 0;
font-size: 24px;
line-height: 1.2
}
@media (max-width: 600px) {
.post-item-list {
flex-direction: column; }
.post-item-image {
flex: 0 0 auto;
width: 100%;
height: 200px; }
.vd-standard-post .post-item-content h2 {
font-size: 18px !important
}
}
.post-tags-section {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid var(--separator);
display: flex;
flex-wrap: wrap;
gap: 10px
}
.tag-link {
background-color: rgb(248, 247, 252) !important;
color: #444;
padding: 5px 12px;
border-radius: 3px;
text-decoration: none !important;
font-size: 13px;
display: inline-block;
align-items: center;
border: 1px solid rgb(235, 235, 245);
transition: background 0.2s;
background: #f0f0f0;
margin: 5px 5px 0 0
}
.tag-link:hover {
background-color: var(--accent) !important;
color: #fff !important;
border-color: var(--accent);
background: #e0e0e0
}
.entry-title {
font-size: 2.2em;
line-height: 1.2;
margin-bottom: 20px;
font-family: var(--secondary-font);
font-weight: 700
}
.post-main-image img {
width: 100%;
height: auto;
border-radius: 4px
}
.image-caption {
font-family: var(--secondary-font);
font-size: 14px;
color: #666;
text-align: center;
margin: 12px 0 30px 0;
font-style: italic;
margin-top: 10px
}
.sidebar-widget {
margin-bottom: 45px
}
.sidebar-title {
border-bottom: 2px solid var(--accent);
display: inline-block;
margin-bottom: 20px;
font-size: 16px;
text-transform: uppercase
}
.sidebar-small-post {
display: flex;
gap: 15px;
text-decoration: none;
color: inherit;
margin-bottom: 20px
}
.sidebar-thumb {
flex-shrink: 0;
width: 65px;
height: 65px;
border-radius: 4px;
overflow: hidden
}
.sidebar-thumb img {
width: 100%;
height: 100%;
object-fit: cover
}
.sidebar-post-title {
font-size: 0.9em;
line-height: 1.3em
}
.main-pagination {
margin-top: 40px;
display: flex;
gap: 8px;
margin: 40px 0;
justify-content: center
}
.main-pagination a, .main-pagination span {
padding: 10px 18px;
background: var(--separator);
text-decoration: none;
color: var(--text-dark);
border-radius: 4px
}
.main-pagination .current {
background: var(--accent);
color: #fff !important;
background-color: #07C !important;
border-color: #07C !important
}
.scroll-top-btn {
position: fixed;
right: 25px;
top: 50%;
transform: translatey(-50%);
background: var(--accent);
color: #fff;
width: 45px;
height: 45px;
border-radius: 50%;
display: none;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 1001
}
@media (max-width: 1024px) {
.main-layout {
grid-template-columns: 1fr;
max-width: 800px
}
.sidebar-area {
width: 100%
}
}
@media (max-width: 768px) {
.menu-toggle {
display: flex
}
.desktop-nav {
display: none
}
.post-item-list {
flex-direction: column
}
.post-item-image {
width: 100%;
height: 200px
}
.wp-block-gallery .wp-block-image {
width: calc(50% - 15px)
}
.wp-block-gallery figure img {
height: 180px !important
}
.footer-feedback-btn.md-btn {
display: flex;
width: 100%;
max-width: 300px;
margin: 10px auto
}
.archive-subtitle {
font-size: 1.2rem;
margin: 30px 0 20px 0;
text-align: center;
border-left: none;
padding-left: 0
}
.team-card-header {
flex-direction: column;
text-align: center
}
.team-main-info h3 {
justify-content: center
}
.team-content-grid {
grid-template-columns: 1fr
}
.team-col-facts {
border-right: none;
border-bottom: 1px solid #f0f0f0
}
.race-card-header {
flex-direction: column;
text-align: center
}
.race-main-info h3 {
justify-content: center
}
.race-stages-grid {
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr))
}
}
.mobile-drawer {
position: fixed;
top: 0;
left: -320px;
width: 300px;
height: 100%;
background: #fff;
z-index: 9999;
transition: all 0.3s ease;
padding: 30px 20px;
box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1)
}
.mobile-drawer.is-active {
left: 0
}
.mobile-drawer-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: none;
z-index: 9998
}
.mobile-drawer-overlay.is-active {
display: block
}
.drawer-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
border-bottom: 1px solid #eee;
padding-bottom: 15px
}
.mobile-nav-links {
list-style: none;
padding: 0
}
.mobile-nav-links li {
margin-bottom: 20px
}
.mobile-nav-links a {
text-decoration: none;
color: #000;
font-family: var(--fira);
font-weight: 600;
font-size: 18px
}
.site-footer {
background-color: rgb(226, 237, 243);
padding: 60px 0;
margin-top: 60px;
color: var(--text-dark)
}
.footer-container {
display: grid;
grid-template-columns: 1fr 1fr; max-width: 1140px;
margin: 0 auto;
padding: 0 20px;
gap: 60px
}
.footer-left .footer-logo {
font-size: 28px;
font-family: var(--fira);
font-weight: 600;
text-decoration: none;
color: #000
}
.footer-description {
margin: 20px 0;
font-size: 15px;
color: var(--text-light)
}
.footer-socials {
display: flex;
gap: 15px;
margin: 25px 0;
align-items: center
}
.footer-socials a {
color: var(--accent);
text-decoration: none;
display: inline-block;
width: 32px;
height: 32px;
line-height: 1
}
.footer-socials i {
font-size: 24px
}
.footer-legal-blocks {
margin-top: 30px
}
.legal-item {
font-size: 14px;
margin: 10px 0
}
.tiny-text {
font-size: 14px;
color: var(--text-light);
line-height: 1.4
}
.footer-separator {
height: 1px;
background: rgba(0, 0, 0, 0.1);
margin: 15px 0
}
.partner-label {
font-family: var(--fira);
font-weight: 600;
font-size: 14px;
margin: 0;
color: var(--text-dark)
}
.footer-copyright-block {
font-size: 13px;
color: var(--text-light)
}
.footer-copyright-block a {
color: inherit;
text-decoration: underline
}
.footer-right {
display: grid;
grid-template-columns: repeat(3, 1fr); gap: 20px
}
.footer-nav-col h4 {
font-family: var(--fira);
font-weight: 600;
font-size: 16px;
text-transform: uppercase;
margin-bottom: 20px;
color: var(--accent)
}
.footer-nav-col ul {
list-style: none;
padding: 0;
margin: 0
}
.footer-nav-col li {
font-size: 14px;
margin-bottom: 10px;
color: var(--text-light)
}
@media (max-width: 900px) {
.footer-container {
grid-template-columns: 1fr;
gap: 40px
}
.footer-right {
grid-template-columns: 1fr
}
.desktop-nav {
display: none; }
.mobile-menu-toggle {
display: flex; align-items: center;
justify-content: center
}
.teams-grid {
grid-template-columns: 1fr
}
.team-main-photo img {
height: 200px; }
.vd-hero-section-wrapper {
grid-template-columns: 1fr; padding: 15px
}
.vd-hero-post .post-item-image {
height: 250px !important
}
.vd-featured-post .post-item-image {
height: 180px !important
}
}
.footer-socials svg {
width: 32px !important;
height: 32px !important;
display: block;
fill: #222 !important; transition: fill 0.2s ease, transform 0.2s ease
}
.footer-socials a:hover svg {
fill: var(--accent) !important; transform: translatey(-3px)
}
.footer-counters {
margin: 25px 0;
display: flex;
flex-direction: column;
align-items: flex-start
}
.yandex-counter {
min-height: 31px; display: block;
clear: both
}
.page-header {
padding-bottom: 15px;
margin-top: 0;
border-bottom: 1px solid var(--separator);
margin-bottom: 30px
}
.search-results .post-item-list {
border-color: var(--separator)
}
a {
transition: color 0.2s ease-in-out
}
.archive-description {
max-width: 750px;
margin-bottom: 30px;
line-height: 1.5;
font-family: var(--primary-font);
margin-top: 10px;
font-style: italic;
color: #666;
font-size: 15px
}
.page-title {
margin: 0;
padding-bottom: 5px;
letter-spacing: -0.5px;
font-family: var(--secondary-font);
font-size: 28px;
text-transform: uppercase
}
.breadcrumbs-content a {
text-decoration: none;
color: var(--accent);
transition: opacity 0.2s
}
.breadcrumbs-content a:hover {
opacity: 0.7
}
.breadcrumbs-content span {
margin: 0 8px;
color: #ccc
}
figcaption {
font-family: var(--lora);
font-size: 14px;
color: var(--text-light);
text-align: center;
margin: 12px 0 30px 0;
font-style: italic
}
.teams-grid {
display: grid;
grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 30px
}
@media (min-width: 1200px) {
.teams-grid {
grid-template-columns: repeat(3, 1fr)
}
}
.team-card {
display: flex;
flex-direction: column;
height: 100%; }
.team-details {
flex-grow: 1; display: flex;
flex-direction: column
}
.team-actions {
margin-top: auto; }
.riders-list {
list-style: none; padding: 0;
margin: 0;
display: flex;
flex-direction: column
}
.riders-list li {
font-size: 14px;
padding: 5px 0;
border-bottom: 1px dashed #eee; color: #333
}
.riders-list li:last-child {
border-bottom: none; }
.riders-list li::before {
content: "•";
color: var(--accent);
font-weight: bold;
display: inline-block;
width: 15px
}
.team-main-photo {
margin: 15px 0;
max-height: 250px; overflow: hidden;
position: relative;
border-radius: 4px
}
.team-main-photo img {
width: 100%;
height: 250px;
object-fit: cover; transition: transform 0.3s ease;
display: block
}
.team-photo-link:hover img {
transform: scale(1.05)
}
.zoom-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0, 0, 0, 0.5);
color: white;
padding: 10px;
border-radius: 50%;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none
}
.team-photo-link:hover .zoom-icon {
opacity: 1
}
.vd-modal {
display: none;
position: fixed;
z-index: 9999;
padding-top: 50px;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
cursor: pointer
}
.vd-modal-content {
margin: auto;
display: block;
max-width: 90%;
max-height: 85vh;
border-radius: 4px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5)
}
.vd-close {
position: absolute;
top: 20px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
cursor: pointer
}
.vd-close:hover {
color: var(--accent)
}
.wp-block-table {
border-radius: 12px;
border: 1px solid #e0e6ed;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
margin: 35px 0;
background: #fff;
display: block;
overflow-x: auto; font-family: "Fira Sans"
}
.wp-block-table table {
width: 100%;
border-collapse: separate;
border-spacing: 0
}
.wp-block-table th {
background-color: #f8fafd;
color: #8898aa;
font-weight: 600;
text-transform: uppercase;
font-size: 11px;
padding: 16px 20px;
text-align: left;
border-bottom: 1px solid #e0e6ed
}
.wp-block-table td {
padding: 14px 20px;
border-bottom: 1px solid #f0f2f5;
font-size: 15px;
color: #32325d
}
.wp-block-table tr:nth-child(1) td {
background-color: rgba(255, 237, 0, 0.1)
}
.wp-block-table tr:nth-child(1) td:first-child {
color: #d4af37;
font-weight: 800
}
.wp-block-table tr:nth-child(2) td {
background-color: rgba(157, 161, 164, 0.1)
}
.wp-block-table tr:nth-child(2) td:first-child {
color: #9da1a4;
font-weight: 800
}
.wp-block-table tr:nth-child(3) td {
background-color: rgba(205, 127, 50, 0.1)
}
.wp-block-table tr:nth-child(3) td:first-child {
color: #cd7f32;
font-weight: 800
}
.wp-block-table td:first-child {
font-weight: 400;
color: #adb5bd;
width: 60px
}
.wp-block-table tr:last-child td {
border-bottom: none
}
.row-dnf td, .row-dns td, .row-otl td {
color: #a0aec0 !important; background-color: #fafbfc !important; }
.row-dnf td:first-child, .row-dns td:first-child {
border-left: 4px solid #e53e3e; color: #e53e3e !important;
font-weight: 600
}
.row-otl td:first-child {
border-left: 4px solid #ed8936; color: #ed8936 !important;
font-weight: 600
}
.row-dnf:hover td, .row-dns:hover td, .row-otl:hover td {
color: #4a5568 !important;
opacity: 1
}
.entry-content iframe, .entry-content object, .entry-content embed, .wp-block-embed {
max-width: 100%; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.wp-block-embed-youtube, .wp-block-embed {
margin: 30px 0;
display: flex;
justify-content: center; }
.wp-block-embed__wrapper {
width: 100%;
position: relative;
padding-bottom: 56.25%; height: 0;
overflow: hidden
}
.wp-block-embed__wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%
}
.wp-block-video {
width: 100% !important;
max-width: 100% !important;
margin: 30px 0;
box-sizing: border-box
}
.wp-block-video video {
width: 100% !important;
height: auto !important;
max-width: 100% !important;
border-radius: 12px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
display: block
}
.wp-block-video figcaption {
margin-top: 12px;
font-size: 13px;
color: #8898aa;
text-align: center;
font-style: italic;
font-family: "Fira Sans", sans-serif
}
.entry-content img, .wp-block-image img, .wp-block-image {
max-width: 100% !important;
height: auto !important;
display: block;
margin-left: auto;
margin-right: auto
}
.wp-block-image img {
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
margin-bottom: 10px
}
.wp-block-image figcaption {
font-size: 13px;
color: #8898aa;
text-align: center;
margin-top: 8px;
font-style: italic
}
.wp-block-gallery {
display: flex;
flex-wrap: wrap;
gap: 15px; margin: 30px 0 !important;
padding: 0 !important;
list-style-type: none !important
}
.wp-block-gallery .wp-block-image {
margin: 0 !important;
flex-grow: 1; width: calc(33.33% - 15px);
position: relative
}
.wp-block-gallery figure img {
width: 100% !important;
height: 250px !important; object-fit: cover !important; border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease
}
.wp-block-gallery figure img:hover {
transform: scale(1.02)
}
@media (max-width: 480px) {
.wp-block-gallery .wp-block-image {
width: 100%
}
}
.wp-block-gallery .wp-block-image figcaption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: 0 !important;
padding: 20px 10px 10px !important;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7)); color: #fff !important;
font-size: 12px !important;
text-align: center;
border-bottom-left-radius: 12px; border-bottom-right-radius: 12px;
opacity: 0; transition: opacity 0.3s ease
}
.wp-block-gallery .wp-block-image:hover figcaption {
opacity: 1
}
#backToTop {
display: none; position: fixed;
right: 20px;
top: 50%;
transform: translatey(-50%); z-index: 999;
width: 45px;
height: 45px;
border: none;
outline: none;
background-color: #07C !important; color: white;
cursor: pointer;
border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease
}
#backToTop:hover {
background-color: #05a !important; transform: translatey(-50%) scale(1.1)
}
.arrow-up {
border: solid white;
border-width: 0 3px 3px 0;
display: inline-block;
padding: 3px;
transform: rotate(-135deg);
-webkit-transform: rotate(-135deg);
margin-top: 5px
}
.main-pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 10px;
background: #fff;
border: 1px solid #e1eff7;
color: #333;
font-family: "Fira Sans", sans-serif;
font-size: 15px;
transition: all 0.2s ease
}
.main-pagination .prev, .main-pagination .next {
font-size: 18px;
font-weight: bold;
color: rgb(0, 122, 255); }
.main-pagination .page-numbers:hover {
background-color: rgb(229, 246, 255);
border-color: #07C !important;
color: #07C !important
}
.entry-content p:first-of-type {
font-weight: 600; font-size: 1em; color: #1f201d; line-height: 1.5; font-family: var(--lora)
}
@media screen and (max-width: 768px) {
.entry-content p:first-of-type {
font-weight: 600;
font-size: 1.05em; line-height: 1.4; margin-bottom: 15px; }
.related-grid { grid-template-columns: 1fr;
gap: 30px; }
.related-post-title {
font-size: 18px; }
}
.news-post {
margin-bottom: 3rem;
max-width: 100%
}
.post-meta {
color: #888;
font-family: var(--secondary-font);
font-size: 12px;
margin-bottom: 10px
}
.post-main-image {
margin: 0
}
.responsive-img {
width: 100%;
height: auto;
border-radius: 4px;
display: block
}
.featured-image {
width: 100%;
height: auto;
border-radius: 4px;
display: block
}
.related-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 20px
}
.related-item {
background: #fff;
border-radius: 8px;
padding: 10px; transition: all 0.3s ease; border: 1px solid #eee; display: flex;
flex-direction: column;
font-size: 0.88rem;
border-left: 3px solid var(--team-color);
padding-left: 10px
}
.related-item:hover {
transform: translatey(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); border-color: #d1e7ff; cursor: pointer
}
.related-thumb {
width: 100%; aspect-ratio: 16/9;
overflow: hidden;
border-radius: 6px;
background-color: #f0f0f0; }
.related-item a {
text-decoration: none;
color: inherit
}
.related-thumb img {
width: 100%;
height: 100%; object-fit: cover; object-position: center;
display: block;
transition: transform 0.3s ease; }
.related-item:hover .related-thumb img {
transform: scale(1.05)
}
.related-post-title {
margin-top: 12px;
font-size: 16px;
line-height: 1.4;
transition: color 0.3s ease
}
.related-item:hover .related-post-title {
color: #08c; }
.vd-hero-section-wrapper {
background-color: #f9fbff !important;
padding: 25px;
margin-bottom: 35px;
border-radius: 4px; border: 1px solid #eef4f9;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px
}
.vd-hero-section-wrapper .post-item-list {
display: block !important; border-bottom: none !important; padding: 0 !important;
margin: 0 !important
}
.vd-hero-section-wrapper .vd-hero-post {
grid-column: 1/-1;
border-bottom: 1px solid #e1eff7 !important;
padding-bottom: 25px !important;
margin-bottom: 5px !important
}
.vd-hero-section-wrapper .post-item-image {
width: 100% !important; height: auto !important; flex: none !important;
margin-bottom: 15px
}
.vd-hero-post .post-item-image img {
height: 380px !important;
width: 100% !important;
object-fit: cover
}
.vd-featured-post .post-item-image img {
height: 200px !important;
width: 100% !important;
object-fit: cover
}
.vd-hero-post .post-item-content h2 {
font-size: 28px !important; margin-bottom: 10px !important
}
.vd-featured-post .post-item-content h2 {
font-size: 20px !important; }
.vd-hero-section-wrapper .entry-excerpt {
font-size: 15px !important;
line-height: 1.5;
color: var(--text-light)
}
@media (max-width: 800px) {
.vd-hero-section-wrapper {
grid-template-columns: 1fr;
padding: 15px
}
.vd-hero-post .post-item-image img {
height: 220px !important
}
}
.vd-standard-post .post-item-content h2 {
font-size: 19px !important; line-height: 1.15 !important;
margin-bottom: 6px !important;
letter-spacing: -0.2px
}
.vd-standard-post .entry-excerpt {
font-family: var(--lora) !important;
font-size: 15px !important;
line-height: 1.5 !important;
color: #444 !important
}
.post-item-list.vd-standard-post {
padding: 20px 0 !important; border-bottom: 1px solid #f0f0f0 !important;
padding-bottom: 25px !important;
margin-bottom: 25px !important;
gap: 20px !important
}
.vd-standard-post:last-of-type {
border-bottom: none !important
}
.entry-content img, .post-main-image img, .featured-image {
max-width: 100% !important;
height: auto !important
}
.post-item-list .post-item-content h2 a {
transition: color 0.2s ease-in-out !important;
color: var(--text-dark);
text-decoration: none !important
}
.post-item-list .post-item-content h2 a:hover {
color: #07C !important; }
.post-item-image a {
display: block;
overflow: hidden;
border-radius: 4px
}
.post-item-image:hover img {
filter: brightness(1.05);
transform: scale(1.03)
}
.entry-excerpt {
color: var(--text-light)
}
.telegram-bar {
background-color: #f7fcff;
border-bottom: 1px solid #d1e7ff;
border-top: 1px solid #d1e7ff;
padding: 10px 15px;
text-align: center;
min-height: 40px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.85em
}
.telegram-bar a {
color: #08c;
text-decoration: none;
border-bottom: 1px solid rgba(0, 136, 204, 0.3);
transition: all 0.2s ease
}
.telegram-bar a:hover {
color: #005f99;
border-bottom-color: #005f99
}
@media (max-width: 850px) {
.main-layout {
display: flex !important;
flex-direction: column !important;
float: none !important;
width: 100% !important;
padding: 0 15px !important;
box-sizing: border-box !important
}
.content-area {
order: 1 !important;
width: 100% !important;
float: none !important;
margin: 0 !important
}
.sidebar-area {
order: 2 !important;
width: 100% !important;
float: none !important;
margin-top: 50px !important; padding-top: 30px;
border-top: 2px solid #f0f0f0
}
.vd-hero-section-wrapper {
display: block !important;
margin-left: -15px !important; margin-right: -15px !important;
padding: 20px 20px !important; background-color: #f9fbff !important;
border-top: 1px solid #eef4f9 !important; border-bottom: 1px solid #eef4f9 !important; box-sizing: border-box !important;
border-radius: 0 !important
}
.vd-hero-section-wrapper .post-item-image {
width: 100% !important;
height: auto !important; margin-bottom: 15px !important
}
.vd-hero-section-wrapper .post-item-image img {
width: 100% !important;
height: 200px !important;
object-fit: cover;
border-radius: 4px; }
.vd-hero-section-wrapper .post-item-list {
display: block !important;
margin-bottom: 25px !important;
padding-bottom: 20px !important;
border-bottom: 1px solid #e1eff7 !important
}
.vd-hero-section-wrapper .post-item-content {
padding: 0 5px !important
}
.post-item-list.vd-standard-post {
flex-direction: column !important; padding: 20px 0 !important
}
.post-item-list.vd-standard-post .post-item-image {
width: 100% !important;
height: 200px !important;
margin-bottom: 15px
}
.telegram-bar {
font-size: 13px;
line-height: 1.4;
padding: 12px;
text-align: center
}
.entry-title {
font-size: 24px !important; line-height: 1.2 !important;
margin-bottom: 15px !important;
padding: 0 5px !important
}
.main-header {
padding: 5px 0 !important
}
}
.has-background {
padding: 10px !important
}
.vd-tg-form-wrapper {
background: #f7fcff; color: #333; padding: 25px;
border-radius: 12px;
font-family: inherit;
margin: 20px 0;
border: 1px solid #e1e8ed; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03)
}
.vd-tg-form-wrapper h3 {
margin-top: 0;
color: #2c3e50 !important; font-size: 1.5em;
margin-bottom: 15px
}
.vd-tg-form-wrapper input[type="text"], .vd-tg-form-wrapper input[type="email"], .vd-tg-form-wrapper textarea {
width: 100%;
padding: 12px;
border-radius: 6px;
border: 1px solid #ccc; background: #fff;
color: #333;
box-sizing: border-box
}
.vd-tg-form-wrapper input:focus, .vd-tg-form-wrapper textarea:focus {
border-color: #e67e22; outline: none
}
.vd-tg-form-wrapper .form-row {
display: flex;
gap: 10px;
margin-bottom: 10px;
flex-wrap: wrap
}
.vd-tg-form-wrapper .form-col {
flex: 1;
min-width: 200px
}
.vd-tg-form-wrapper .file-upload {
margin-bottom: 15px;
font-size: 0.9em
}
.vd-tg-form-wrapper .file-upload label {
display: block;
margin-bottom: 5px;
color: #555
}
.vd-tg-form-wrapper .form-footer {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px
}
.vd-tg-form-wrapper .privacy-note {
font-size: 0.78em;
color: #7f8c8d; margin: 0;
line-height: 1.4;
max-width: 70%
}
.vd-tg-form-wrapper .submit-btn {
background: #e67e22;
color: #fff;
border: none;
padding: 14px 28px;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
transition: all 0.2s ease
}
.vd-tg-form-wrapper .submit-btn:hover {
background: #d35400;
transform: translatey(-1px)
}
.vd-tg-form-wrapper .success-msg {
background: #eafaf1;
border: 1px solid #27ae60;
padding: 15px;
border-radius: 6px;
margin-bottom: 15px;
color: #27ae60
}
.footer-feedback-btn.md-btn {
display: inline-flex;
align-items: center;
justify-content: center;
background-color: #fff; color: #1976d2 !important; padding: 10px 24px;
font-size: 13px;
font-weight: 600;
text-decoration: none !important; letter-spacing: 0.8px;
border-radius: 4px;
border: none; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1)
}
.footer-feedback-btn.md-btn:hover {
background-color: #f0f7ff; box-shadow: 0 5px 12px rgba(25, 118, 210, 0.15); transform: translatey(-2px)
}
.footer-feedback-btn.md-btn:active {
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
transform: translatey(0)
}
.velo-breadcrumbs a {
text-decoration: none;
transition: color 0.2s
}
.velo-breadcrumbs a:hover {
color: #e67e22 !important
}
.calculator-page-wrapper {
max-width: 800px; margin: 0 auto
}
.yandex-ad-block {
min-height: 250px; display: flex;
flex-direction: column;
justify-content: center
}
.calc-footer-nav a {
color: #1976d2;
text-decoration: underline
}
.calc-footer-nav a:hover {
color: #e67e22
}
.archive-item {
margin-bottom: 30px;
border-bottom: 1px solid var(--separator);
padding-bottom: 20px;
display: flex;
gap: 20px
}
.archive-item .post-item-image {
flex: 0 0 200px
}
.archive-item .post-item-image img {
width: 100%;
height: auto;
border-radius: 4px
}
.archive-item .post-item-content {
flex: 1
}
.archive-item .entry-title {
margin: 0 0 10px 0;
font-family: var(--secondary-font);
font-size: 1.3rem
}
.archive-item .entry-title a {
text-decoration: none;
color: #222
}
.archive-item .post-date {
margin-top: 12px;
font-family: var(--secondary-font);
font-size: 12px;
color: #aaa;
text-transform: uppercase
}
.archive-pagination {
font-family: var(--secondary-font);
margin-top: 40px;
display: flex;
gap: 10px
}
.archive-pagination a, .archive-pagination span {
padding: 8px 12px;
background: var(--bg-header);
border-radius: 4px;
text-decoration: none;
color: inherit
}
.footer-partners {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 15px;
font-size: 13px
}
.footer-partners img {
display: inline-block;
vertical-align: middle;
flex-shrink: 0
}
.footer-partners a {
text-decoration: none;
color: inherit
}
.footer-partners a:hover {
text-decoration: underline
}
.footer-partners .sep {
color: #ccc;
margin: 0 5px
}
.rider-card-full {
font-weight: 400;
width: 100%;
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 12px;
margin: 30px 0;
overflow: hidden;
font-family: var(--fira), sans-serif; box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
container-type: inline-size; }
.rider-card-header {
display: flex;
background: #fcfcfc;
padding: 30px;
border-bottom: 1px solid #eee;
align-items: center;
gap: 30px
}
.rider-photo-big {
width: 160px;
height: 160px;
border-radius: 50%;
object-fit: cover;
border: 3px solid #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
flex-shrink: 0
}
.rider-main-info h3 {
margin: 0 0 5px 0 !important;
font-size: 1.8rem !important;
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
line-height: 1.2
}
.rider-country-meta {
display: flex;
align-items: center;
gap: 8px;
font-size: 1rem;
color: #666;
font-weight: normal
}
.rider-flag-icon {
width: 24px;
height: auto;
border-radius: 2px
}
.rider-team-label {
font-size: 1.1rem;
color: #000;
font-weight: 600;
margin-bottom: 10px
}
.rider-desc-text {
font-size: 0.95rem;
line-height: 1.4;
color: #555;
margin: 0
}
.rider-content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
background: #fff
}
.rider-col-facts {
padding: 25px;
border-right: 1px solid #f0f0f0
}
.rider-col-awards {
padding: 25px;
background: #fafafa
}
.rider-info-row {
margin-bottom: 18px;
font-size: 0.95rem;
display: flex;
gap: 8px;
line-height: 1.4;
align-items: flex-start
}
.rider-info-row strong {
color: #888;
text-transform: uppercase;
font-size: 0.7rem;
letter-spacing: 0.5px;
min-width: 90px;
flex-shrink: 0
}
.awards-title-mini {
display: block;
color: #888;
text-transform: uppercase;
font-size: 0.7rem;
letter-spacing: 0.5px;
margin-bottom: 15px;
font-weight: bold
}
.rider-awards-list {
list-style: none;
padding: 0;
margin: 0;
font-size: 0.88rem;
line-height: 1.5;
color: #333
}
.rider-awards-list li {
position: relative;
padding-left: 18px;
margin-bottom: 8px
}
.rider-awards-list li::before {
content: "•";
position: absolute;
left: 0;
color: #fc0; font-weight: bold
}
.rider-footer-link {
display: block;
background: #000;
color: #fff !important;
text-align: center;
text-decoration: none !important;
padding: 15px;
font-weight: bold;
font-size: 0.9rem;
letter-spacing: 1px;
text-transform: uppercase;
transition: background 0.3s
}
.rider-footer-link:hover {
background: #333
}
.rider-spec-list {
display: flex;
flex-direction: column;
gap: 6px; }
.rider-spec-list span {
line-height: 1.2; display: block
}
.rider-social-links {
display: flex;
gap: 10px;
margin-bottom: 12px;
margin: 8px 0 12px 0
}
.rider-social-links a {
font-size: 0.75rem;
text-transform: uppercase;
font-weight: bold;
color: #d32f2f; text-decoration: none;
border-bottom: 1px solid transparent;
transition: all 0.3s
}
.rider-social-links a:hover {
border-color: #d32f2f;
opacity: 0.8
}
.social-btn {
font-size: 0.7rem;
font-weight: bold;
text-transform: uppercase;
text-decoration: none !important;
padding: 4px 8px;
border-radius: 4px;
background: #f0f0f0;
color: #555 !important;
transition: all 0.2s;
border: 1px solid #ddd
}
.social-btn:hover {
background: #000;
color: #fff !important;
border-color: #333;
background-color: #333
}
.social-btn.facebook:hover {
background-color: #1877F2;
border-color: #1877F2;
color: #fff !important
}
.social-btn.instagram:hover {
background-color: #E1306C;
border-color: #E1306C;
color: #fff !important
}
.social-btn.twitter:hover {
background-color: #000;
border-color: #000;
color: #fff !important
}
.social-btn.strava:hover {
background-color: #FC6100;
border-color: #FC6100;
color: #fff !important
}
.archive-subtitle {
margin: 40px 0 25px 0;
font-size: 1.5rem;
font-weight: 700;
border-left: 4px solid #000; padding-left: 15px;
text-transform: uppercase;
letter-spacing: 0.5px
}
.team-card-full {
font-weight: 400;
width: 100%;
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 12px;
margin: 30px 0;
overflow: hidden;
font-family: var(--fira), sans-serif;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
container-type: inline-size
}
.team-card-header {
display: flex;
background: #fcfcfc;
padding: 30px;
border-bottom: 1px solid #eee;
align-items: center;
gap: 30px
}
.team-logo-big {
width: 140px;
height: 140px;
border-radius: 12px;
object-fit: cover;
background: #fff;
padding: 0;
border: 1px solid #e0e0e0;
flex-shrink: 0
}
.team-main-info h3 {
margin: 0 0 5px 0 !important;
font-size: 1.8rem !important;
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
line-height: 1.2
}
.team-country-meta {
display: flex;
align-items: center;
gap: 8px;
font-size: 1rem;
color: #666;
font-weight: normal
}
.team-flag-icon {
width: 24px;
height: auto;
border-radius: 2px
}
.team-code-label {
font-size: 1.1rem;
color: var(--team-color);
font-weight: 600;
margin-bottom: 10px
}
.team-desc-text {
font-size: 0.95rem;
line-height: 1.4;
color: #555;
margin: 0
}
.team-content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
background: #fff
}
.team-col-facts {
padding: 25px;
border-right: 1px solid #f0f0f0
}
.team-col-sidebar {
padding: 25px;
background: #fafafa
}
.team-info-row {
margin-bottom: 20px;
font-size: 0.95rem;
line-height: 1.4
}
.team-info-row strong {
display: block;
color: #888;
text-transform: uppercase;
font-size: 0.7rem;
letter-spacing: 0.5px;
margin-bottom: 8px
}
.team-sponsors-list {
display: flex;
flex-direction: column;
gap: 4px
}
.sponsor-tag {
font-size: 0.9rem
}
.sponsor-tag a {
color: var(--team-color);
text-decoration: none;
font-weight: 600
}
.sponsor-tag a:hover {
text-decoration: underline
}
.sponsor-tag small {
color: #888;
font-size: 0.8rem
}
.team-equipment-list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6px
}
.equipment-item {
font-size: 0.85rem;
display: flex;
flex-direction: column;
gap: 4px
}
.equip-label {
color: #888;
font-size: 0.7rem; letter-spacing: 0.3px
}
.equip-value {
font-weight: 500
}
.staff-list {
display: flex;
flex-direction: column;
gap: 4px
}
.staff-item {
font-size: 0.88rem
}
.staff-name {
font-weight: 600
}
.staff-role {
color: #888
}
.related-teams-list {
display: flex;
flex-direction: column;
gap: 6px
}
.related-name {
font-weight: 600;
display: block
}
.related-meta {
color: #888;
font-size: 0.78rem
}
.sidebar-title-mini {
display: block;
color: #888;
text-transform: uppercase;
font-size: 0.7rem;
letter-spacing: 0.5px;
margin-bottom: 12px;
font-weight: bold
}
.sidebar-title-mini:not(:first-child) {
margin-top: 25px
}
.team-history-list {
font-size: 0.85rem
}
.team-col-facts .team-history-list {
margin-top: 0
}
.team-col-facts .history-item {
position: relative;
padding-left: 18px;
margin-bottom: 6px;
line-height: 1.3
}
.team-col-facts .history-item::before {
content: "•";
position: absolute;
left: 0;
color: var(--team-color);
font-weight: bold
}
.history-item {
position: relative;
padding-left: 18px;
margin-bottom: 8px;
line-height: 1.3
}
.history-item::before {
content: "•";
position: absolute;
left: 0;
color: var(--team-color);
font-weight: bold
}
.history-year {
font-weight: 700;
color: #000;
margin-right: 6px
}
.history-name {
color: #555
}
.team-roster-list {
display: flex;
flex-direction: column;
gap: 6px;
font-size: 0.88rem
}
.roster-item {
display: flex;
align-items: center;
gap: 8px;
padding: 4px 0;
text-decoration: none;
color: #333;
transition: color 0.2s
}
.roster-item:hover {
color: var(--team-color)
}
.roster-flag {
width: 18px;
height: 12px;
object-fit: cover;
border-radius: 1px;
flex-shrink: 0
}
.roster-name {
font-size: 0.85rem
}
.team-social-links {
display: flex;
gap: 10px;
margin: 8px 0 12px 0
}
.team-social-links .social-btn {
font-size: 0.7rem;
font-weight: bold;
text-transform: uppercase;
text-decoration: none !important;
padding: 4px 8px;
border-radius: 4px;
background: #f0f0f0;
color: #555 !important;
transition: all 0.2s;
border: 1px solid #ddd
}
.team-social-links .social-btn:hover {
background: #000;
color: #fff !important;
border-color: #000
}
.team-social-links .social-btn.facebook:hover {
background-color: #1877F2;
border-color: #1877F2;
color: #fff !important
}
.team-social-links .social-btn.instagram:hover {
background-color: #E1306C;
border-color: #E1306C;
color: #fff !important
}
.team-social-links .social-btn.twitter:hover {
background-color: #000;
border-color: #000;
color: #fff !important
}
.team-social-links .social-btn.strava:hover {
background-color: #FC6100;
border-color: #FC6100;
color: #fff !important
}
.team-social-links .social-btn.youtube:hover {
background-color: #F00;
border-color: #F00;
color: #fff !important
}
.team-social-links .social-btn.tiktok:hover {
background-color: #000;
border-color: #000;
color: #fff !important
}
.team-social-links .social-btn.linkedin:hover {
background-color: #0077B5;
border-color: #0077B5;
color: #fff !important
}
.race-card-full {
font-weight: 400;
width: 100%;
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 12px;
margin: 30px 0;
overflow: hidden;
font-family: var(--fira), sans-serif;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
container-type: inline-size
}
.race-card-header {
display: flex;
background: #fcfcfc;
padding: 30px;
border-bottom: 1px solid #eee;
align-items: center;
gap: 30px
}
.race-logo-big {
width: 130px;
height: 130px;
border-radius: 12px;
object-fit: cover;
background: #fff;
border: 1px solid #e0e0e0;
flex-shrink: 0
}
.race-main-info h3 {
margin: 0 0 5px 0 !important;
font-size: 1.8rem !important;
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
line-height: 1.2
}
.race-organizer-label {
font-size: 1.1rem;
color: #d32f2f;
font-weight: 600;
margin-bottom: 10px
}
.race-desc-text {
font-size: 0.95rem;
line-height: 1.4;
color: #555;
margin: 0
}
.race-facts-section {
border-bottom: 1px solid #eee
}
.race-facts-row {
display: flex;
flex-wrap: wrap;
align-items: center;
border-bottom: 1px solid #f5f5f5
}
.race-facts-row:last-child {
border-bottom: none
}
.race-fact-item {
flex: 1;
min-width: 120px;
padding: 14px 20px;
border-right: 1px solid #f0f0f0;
text-align: center
}
.race-fact-item:last-child {
border-right: none
}
.fact-label {
display: block;
color: #888;
text-transform: uppercase;
font-size: 0.65rem;
letter-spacing: 0.5px;
margin-bottom: 5px;
font-weight: 600
}
.fact-value {
font-size: 1rem;
font-weight: 700;
color: #000
}
.race-facts-classifications {
padding: 14px 20px;
gap: 10px
}
.race-facts-classifications .fact-label {
display: inline-block;
margin-bottom: 0;
margin-right: 10px
}
.classifications-inline {
display: flex;
flex-wrap: wrap;
gap: 8px
}
.class-jersey {
background: #f5f5f5;
padding: 4px 10px;
border-radius: 4px;
font-size: 0.82rem;
font-weight: 600;
white-space: nowrap
}
.race-stages-details {
border-top: 1px solid #eee
}
.stages-summary {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 25px;
cursor: pointer;
user-select: none;
font-size: 1rem;
font-weight: 700;
color: #000;
list-style: none
}
.stages-summary::-webkit-details-marker {
display: none
}
.stages-summary:hover {
background: #f9f9f9
}
.stages-arrow {
font-size: 0.8rem;
color: #888;
transition: transform 0.3s
}
.race-stages-details[open] .stages-arrow {
transform: rotate(180deg)
}
.race-stages-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 12px;
padding: 0 25px 25px 25px
}
.stage-card {
background: #fafafa;
border-radius: 8px;
overflow: hidden;
border: 1px solid #eee;
transition: transform 0.2s
}
.stage-card:hover {
transform: translatey(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08)
}
.stage-profile {
width: 100%;
height: auto;
max-height: 100px;
object-fit: contain;
background: #f0f0f0
}
.stage-card-content {
padding: 12px
}
.stage-card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 4px
}
.stage-num {
font-weight: 700;
font-size: 0.85rem;
color: #000
}
.stage-date {
font-size: 0.75rem;
color: #888
}
.stage-route {
font-weight: 600;
font-size: 0.85rem;
margin-bottom: 8px;
color: #333
}
.stage-meta {
display: flex;
gap: 8px;
flex-wrap: wrap;
font-size: 0.75rem;
color: #666;
margin-bottom: 8px
}
.stage-type {
padding: 3px 8px;
border-radius: 4px;
font-weight: 600;
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.3px
}
.stage-dist {
font-weight: 600
}
.stage-elev {
color: #d32f2f
}
.stage-type-badge {
width: 100%;
padding: 6px 0;
text-align: center;
font-size: 0.65rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-top: 8px
}
.stage-type-badge[data-type*="Flat"], .stage-type-badge[data-type*="равнинный"], .stage-type-badge[data-type*="Равнинный"] {
background: #e8f5e9;
color: #2e7d32
}
.stage-type-badge[data-type*="Hilly"], .stage-type-badge[data-type*="холмистый"], .stage-type-badge[data-type*="Холмистый"] {
background: #fff3e0;
color: #e65100
}
.stage-type-badge[data-type*="Medium mountain"], .stage-type-badge[data-type*="средней сложности"], .stage-type-badge[data-type*="Средние горы"] {
background: #fce4ec;
color: #c62828
}
.stage-type-badge[data-type*="Mountain"], .stage-type-badge[data-type*="горный"], .stage-type-badge[data-type*="Горный"] {
background: #e53935;
color: #fff
}
.stage-type-badge[data-type*="Individual Time Trial"], .stage-type-badge[data-type*="ITT"], .stage-type-badge[data-type*="индивидуальная"] {
background: #e3f2fd;
color: #1565c0
}
.stage-type-badge[data-type*="Индивидуальная"], .stage-type-badge[data-type*="ITT"] {
background: #e3f2fd;
color: #1565c0
}
.stage-type-badge[data-type*="Командная"], .stage-type-badge[data-type*="TTT"] {
background: #e0f7fa;
color: #00838f
}
.race-social-links {
display: flex;
gap: 10px;
margin: 8px 0 12px 0
}
.race-social-links .social-btn {
font-size: 0.7rem;
font-weight: bold;
text-transform: uppercase;
text-decoration: none !important;
padding: 4px 8px;
border-radius: 4px;
background: #f0f0f0;
color: #555 !important;
transition: all 0.2s;
border: 1px solid #ddd
}
.race-social-links .social-btn:hover {
background: #000;
color: #fff !important;
border-color: #000
}
.race-social-links .social-btn.facebook:hover {
background-color: #1877F2;
border-color: #1877F2;
color: #fff !important
}
.race-social-links .social-btn.instagram:hover {
background-color: #E1306C;
border-color: #E1306C;
color: #fff !important
}
.race-social-links .social-btn.twitter:hover {
background-color: #000;
border-color: #000;
color: #fff !important
}
.race-social-links .social-btn.tiktok:hover {
background-color: #000;
border-color: #000;
color: #fff !important
}
.race-social-links .social-btn.strava:hover {
background-color: #FC6100;
border-color: #FC6100;
color: #fff !important
}
.stages-collapse-wrap {
display: flex;
justify-content: center;
padding: 0 25px 20px 25px
}
.stages-collapse-btn {
background: none;
border: 1px solid #ddd;
border-radius: 6px;
padding: 8px 24px;
font-size: 0.85rem;
font-weight: 600;
color: #888;
cursor: pointer;
transition: all 0.2s;
font-family: var(--fira), sans-serif
}
.stages-collapse-btn:hover {
background: #f5f5f5;
color: #333;
border-color: #ccc
}
.rider-spec-list span {
display: inline-block;
padding: 4px 8px;
margin: 3px 5px 0 0;
font-size: 12px;
border-radius: 6px;
background: #f2f2f2;
}  @media (max-width: 900px) { .rider-card-header {
flex-direction: column;
text-align: center;
gap: 20px;
padding: 25px;
}
.rider-main-info h3 {
justify-content: center;
font-size: 1.5rem !important;
}
.rider-country-meta {
justify-content: center;
}
.rider-social-links {
justify-content: center;
flex-wrap: wrap;
}
.rider-content-grid {
grid-template-columns: 1fr;
}
.rider-col-facts {
border-right: none;
border-bottom: 1px solid #f0f0f0;
padding: 20px;
}
.rider-col-awards {
padding: 20px;
} .team-card-header {
flex-direction: column;
text-align: center;
gap: 20px;
padding: 25px;
}
.team-main-info h3 {
justify-content: center;
font-size: 1.5rem !important;
}
.team-country-meta {
justify-content: center;
}
.team-social-links {
justify-content: center;
flex-wrap: wrap;
}
.team-content-grid {
grid-template-columns: 1fr;
}
.team-col-facts {
border-right: none;
border-bottom: 1px solid #f0f0f0;
padding: 20px;
}
.team-col-sidebar {
padding: 20px;
}
.team-equipment-list {
grid-template-columns: 1fr;
} .race-card-header {
flex-direction: column;
text-align: center;
gap: 20px;
padding: 25px;
}
.race-main-info h3 {
justify-content: center;
font-size: 1.5rem !important;
flex-direction: column;
gap: 10px;
}
.race-social-links {
justify-content: center;
flex-wrap: wrap;
}
.race-facts-row {
flex-direction: column;
}
.race-fact-item {
width: 100%;
border-right: none;
border-bottom: 1px solid #f0f0f0;
text-align: left;
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 20px;
}
.race-fact-item:last-child {
border-bottom: none;
}
.fact-label {
margin-bottom: 0;
font-size: 0.7rem;
}
.fact-value {
font-size: 0.95rem;
}
.race-facts-classifications {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
.race-facts-classifications .fact-label {
margin-bottom: 5px;
}
.classifications-inline {
flex-wrap: wrap;
}
.race-stages-grid {
grid-template-columns: 1fr;
padding: 0 15px 20px 15px;
}
} @media (max-width: 600px) { .rider-card-header {
padding: 20px;
}
.rider-photo-big {
width: 120px;
height: 120px;
}
.rider-main-info h3 {
font-size: 1.3rem !important;
flex-direction: column;
gap: 8px;
}
.rider-team-label {
font-size: 1rem;
}
.rider-desc-text {
font-size: 0.85rem;
}
.rider-info-row {
flex-direction: column;
gap: 4px;
}
.rider-info-row strong {
min-width: auto;
}
.rider-spec-list span {
display: inline-block;
padding: 4px 8px;
font-size: 11px;
}
.rider-awards-list li {
font-size: 0.82rem;
}
.social-btn {
font-size: 0.65rem;
padding: 3px 6px;
} .team-card-header {
padding: 20px;
}
.team-logo-big {
width: 100px;
height: 100px;
}
.team-main-info h3 {
font-size: 1.3rem !important;
flex-direction: column;
gap: 8px;
}
.team-code-label {
font-size: 0.9rem;
}
.team-desc-text {
font-size: 0.85rem;
}
.team-info-row strong {
font-size: 0.65rem;
}
.team-info-row {
font-size: 0.85rem;
}
.equipment-item {
font-size: 0.8rem;
}
.staff-item {
font-size: 0.8rem;
}
.roster-item {
font-size: 0.8rem;
} .race-card-header {
padding: 20px;
}
.race-logo-big {
width: 90px;
height: 90px;
}
.race-main-info h3 {
font-size: 1.3rem !important;
}
.race-organizer-label {
font-size: 0.9rem;
}
.race-desc-text {
font-size: 0.85rem;
}
.race-fact-item {
padding: 10px 15px;
}
.fact-label {
font-size: 0.65rem;
}
.fact-value {
font-size: 0.85rem;
}
.class-jersey {
font-size: 0.7rem;
padding: 3px 8px;
}
.stage-card-content {
padding: 10px;
}
.stage-num {
font-size: 0.8rem;
}
.stage-route {
font-size: 0.8rem;
}
.stage-meta {
font-size: 0.7rem;
}
.stages-summary {
padding: 12px 20px;
font-size: 0.9rem;
}
.stages-collapse-btn {
padding: 6px 20px;
font-size: 0.8rem;
}
}.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(//velodaily.ru/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(//velodaily.ru/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(//velodaily.ru/wp-includes/js/mediaelement/mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}.mejs-container{clear:both;max-width:100%}.mejs-container *{font-family:Helvetica,Arial}.mejs-container,.mejs-container .mejs-controls,.mejs-embed,.mejs-embed body{background:#222}.mejs-time{font-weight:400;word-wrap:normal}.mejs-controls a.mejs-horizontal-volume-slider{display:table}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#fff}.mejs-controls .mejs-time-rail .mejs-time-current{background:#0073aa}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail .mejs-time-total{background:rgba(255,255,255,.33)}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail span{border-radius:0}.mejs-overlay-loading{background:0 0}.mejs-controls button:hover{border:none;-webkit-box-shadow:none;box-shadow:none}.me-cannotplay{width:auto!important}.media-embed-details .wp-audio-shortcode{display:inline-block;max-width:400px}.audio-details .embed-media-settings{overflow:visible}.media-embed-details .embed-media-settings .setting span:not(.button-group){max-width:400px;width:auto}.media-embed-details .embed-media-settings .checkbox-setting span{display:inline-block}.media-embed-details .embed-media-settings{padding-top:0;top:28px}.media-embed-details .instructions{padding:16px 0;max-width:600px}.media-embed-details .setting .remove-setting,.media-embed-details .setting p{color:#a00;font-size:10px;text-transform:uppercase}.media-embed-details .setting .remove-setting{padding:5px 0}.media-embed-details .setting a:hover{color:#dc3232}.media-embed-details .embed-media-settings .checkbox-setting{float:none;margin:0 0 10px}.wp-video{max-width:100%;height:auto}.wp_attachment_holder .wp-audio-shortcode,.wp_attachment_holder .wp-video{margin-top:18px}.wp-video-shortcode video,video.wp-video-shortcode{max-width:100%;display:inline-block}.video-details .wp-video-holder{width:100%;max-width:640px}.wp-playlist{border:1px solid #ccc;padding:10px;margin:12px 0 18px;font-size:14px;line-height:1.5}.wp-admin .wp-playlist{margin:0 0 18px}.wp-playlist video{display:inline-block;max-width:100%}.wp-playlist audio{display:none;max-width:100%;width:400px}.wp-playlist .mejs-container{margin:0;max-width:100%}.wp-playlist .mejs-controls .mejs-button button{outline:0}.wp-playlist-light{background:#fff;color:#000}.wp-playlist-dark{color:#fff;background:#000}.wp-playlist-caption{display:block;max-width:88%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:1.5}.wp-playlist-item .wp-playlist-caption{text-decoration:none;color:#000;max-width:-webkit-calc(100% - 40px);max-width:calc(100% - 40px)}.wp-playlist-item-meta{display:block;font-size:14px;line-height:1.5}.wp-playlist-item-title{font-size:14px;line-height:1.5}.wp-playlist-item-album{font-style:italic;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-playlist-item-artist{font-size:12px;text-transform:uppercase}.wp-playlist-item-length{position:absolute;right:3px;top:0;font-size:14px;line-height:1.5}.rtl .wp-playlist-item-length{left:3px;right:auto}.wp-playlist-tracks{margin-top:10px}.wp-playlist-item{position:relative;cursor:pointer;padding:0 3px;border-bottom:1px solid #ccc}.wp-playlist-item:last-child{border-bottom:0}.wp-playlist-light .wp-playlist-caption{color:#333}.wp-playlist-dark .wp-playlist-caption{color:#ddd}.wp-playlist-playing{font-weight:700;background:#f7f7f7}.wp-playlist-light .wp-playlist-playing{background:#fff;color:#000}.wp-playlist-dark .wp-playlist-playing{background:#000;color:#fff}.wp-playlist-current-item{overflow:hidden;margin-bottom:10px;height:60px}.wp-playlist .wp-playlist-current-item img{float:left;max-width:60px;height:auto;margin-right:10px;padding:0;border:0}.rtl .wp-playlist .wp-playlist-current-item img{float:right;margin-left:10px;margin-right:0}.wp-playlist-current-item .wp-playlist-item-artist,.wp-playlist-current-item .wp-playlist-item-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-audio-playlist .me-cannotplay span{padding:5px 15px}