/* =========================
   Fonts
========================= */

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,300..700;1,17..18,300..700&family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&display=swap');


/* =========================
   Base Typography
========================= */

html {
    font-size: 16px;
}

body {
    font-family: "Google Sans", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    font-size: 110%;
    color: #222;
    background: #fff;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* =========================
   Headings
========================= */

h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Serif Display", serif;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 20px;
    color: #111;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

/* =========================
   Text Elements
========================= */

p {
    margin: 0 0 15px;
}

a {
    color: #003f70;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #0098d3;
     transition: all 0.2s ease;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
}

/* =========================
   Lists
========================= */

ul, ol {
    margin: 0 0 20px 20px;
    padding: 0;
}

li {
    margin-bottom: 6px;
}

/* =========================
   Images
========================= */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   Layout Helpers
========================= */

.center {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   Sections spacing (base)
========================= */

#header,
#slideshow,
#doctors,
#promo,
#plasticservices,
#vascularservices,
#video,
#news,
#footer {
    width: 100%;
}

#header .center {
    display: flex;
    align-items: center;
    gap: 30px;
}

#logo {
    flex: 0 0 150px;
    width: 150px;
}

#logo .mod-custom,
#logo p {
    margin: 0;
}

#logo img {
    display: block;
    width: 100%;
    height: auto;
}

#infos {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

#infos .mod-custom {
    width: 100%;
}

.top-bar {
    padding: 20px 0;
    background: #fff;
}

.top-bar__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.top-bar__info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    margin-bottom: 15px;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar__item span,
.top-bar__item a,
.top-bar__item i {
    line-height: 1;
}
.top-bar__item img {
    display: block;
    width: 20px;
    height: 20px;
}

.top-bar__item a {
    color: inherit;
    text-decoration: none;
}

.top-bar__item a:hover {
    opacity: 0.7;
}

.top-bar__socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.top-bar__socials li {
    margin: 0;
    padding: 0;
}

.top-bar__socials a {
    width: 44px;
    height: 44px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar__socials a img {
    display: block;
    width: 18px;
    height: 18px;
}

.top-bar__socials a:hover {
    background: #000;
}

.top-bar__socials a:hover img {
    filter: brightness(0) invert(1);
}


#menuBar{ background-color: #E6E6E6; border-bottom: 5px solid #AD976E;}


#doctors {
    padding-bottom: 80px;
}

.vp-doctors-section {
    width: 100%;
}

.vp-doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.vp-doctor-card {
    --vp-accent: #A81C23;
    --vp-accent-rgb: 168, 28, 35;
    --vp-title-color: #ffffff;
    --vp-card-bg: #ffffff;
    --vp-text-color: #2f2f2f;
    --vp-cta-bg: #ffffff;
    --vp-cta-text: var(--vp-accent);
    --vp-cta-icon-bg: var(--vp-accent);
    --vp-cta-icon-color: #ffffff;
    --vp-card-radius-tl: 0;
    --vp-card-radius-tr: 0;
    --vp-card-radius-br: 0;
    --vp-card-radius-bl: 0;

    position: relative;
    background: var(--vp-card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top-left-radius: var(--vp-card-radius-tl);
    border-top-right-radius: var(--vp-card-radius-tr);
    border-bottom-right-radius: var(--vp-card-radius-br);
    border-bottom-left-radius: var(--vp-card-radius-bl);
    overflow: hidden;
}

.vp-doctor-card--red {
    --vp-accent: #A81C23;
    --vp-accent-rgb: 168, 28, 35;
    --vp-card-radius-tr: 90px;
}

.vp-doctor-card--green {
    --vp-accent: #88925C;
    --vp-accent-rgb: 136, 146, 92;
    --vp-card-radius-tl: 90px;
}

.vp-doctor-card__media-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vp-doctor-card__media {
    position: relative;
    overflow: hidden;
}

.vp-doctor-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.45s ease;
}

.vp-doctor-card--red .vp-doctor-card__image {
    background-image:
        linear-gradient(
            to top,
            rgba(168, 28, 35, 0.30) 0%,
            rgba(168, 28, 35, 0.08) 40%,
            rgba(168, 28, 35, 0.00) 100%
        ),
        url("/images/doundoulakisHomepage.webp");
}

.vp-doctor-card--green .vp-doctor-card__image {
    background-image:
        linear-gradient(
            to top,
            rgba(136, 146, 92, 0.28) 0%,
            rgba(136, 146, 92, 0.08) 40%,
            rgba(136, 146, 92, 0.00) 100%
        ),
        url("/images/delviniotiHomepage.webp");
}

.vp-doctor-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 28px 34px;
    background:
        linear-gradient(
            to top,
            rgba(var(--vp-accent-rgb), 0.72) 0%,
            rgba(var(--vp-accent-rgb), 0.34) 25%,
            rgba(var(--vp-accent-rgb), 0.10) 48%,
            rgba(var(--vp-accent-rgb), 0.00) 100%
        );
    pointer-events: none;
}

.vp-doctor-card__title {
    margin: 0;
    color: var(--vp-title-color) !important;
    line-height: 1.15;
    font-size: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    margin-bottom: 15px;
}

.vp-doctor-card:hover .vp-doctor-card__image {
    transform: scale(1.03);
}

.vp-doctor-card__cta-link {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 56px;
    align-items: stretch;
    width: calc(100% - 56px);
    margin: -18px auto 0;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.vp-doctor-card__cta-text {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 20px 20px;
    background: var(--vp-cta-bg);
    color: var(--vp-cta-text);
    line-height: 1.3;
    text-align: center;
    font-size: 1.4rem;
}

.vp-doctor-card__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    background: var(--vp-cta-icon-bg);
    color: var(--vp-cta-icon-color);
    line-height: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.vp-doctor-card__content {
    padding: 35px;
    background: #ffffff;
}

.vp-doctor-card__content p {
    margin: 0;
    color: var(--vp-text-color);
    line-height: 1.95;
}

.vp-doctor-card__cta-icon::before {
    content: "";
    display: block;

    width: 18px;
    height: 18px;

    background-color: #ffffff;

    -webkit-mask: url('/templates/webmac/svg/light/arrow-right.svg') no-repeat center / contain;
    mask: url('/templates/webmac/svg/light/arrow-right.svg') no-repeat center / contain;
}


.vpheading{ position: relative;}
.vpheading h5{ display: table; padding: 0 70px; position: relative; color: #AD976E; font-family: "Google Sans", "Inter", "Segoe UI", Roboto, Arial, sans-serif; font-weight: 400;}
.vpheading h5::before {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    position: absolute;
    background-color: #AD976E;
    bottom: 50%;
    top: 50%;
    margin: auto 0;
    left: 0;
}
.vpheading h5::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    position: absolute;
    background-color: #AD976E;
    bottom: 50%;
    top: 50%;
    right: 0;
    margin: auto 0;
}


.wmItemHeader {
    position: relative;
    aspect-ratio: 16 / 6;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    margin-bottom: 60px;
}

.wmItemHeader::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient( to top, #A81C23 0%, rgba(168, 28, 35, 0) 50%);  */

background: linear-gradient(
        to top,
        rgba(136, 146, 92, 0.85) 10%,
        rgba(136, 146, 92, 0) 70%
    );


    pointer-events: none;
    z-index: 1;
}
.wmItemHeader .center {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    align-content: flex-end;
    padding-bottom: 100px;
}

.wmItemHeader .title {
    width: 100%;
}


.wmItemHeader .title h1 {
    margin: 0 0 0px 0;
    color: #fff;
    font-size: 4rem;
    line-height: 160%;
}
.wmItemHeader .subtitle {
    margin: 0;
    color: #fff;
    font-size: 2.5rem;
    line-height: 160%;
    display: block;
    width: 100%;
}

.wmItemText{ margin-bottom: 60px; overflow: hidden;}
.wmItemText img{max-width: 100%; height: auto;}
.wmItemText h2{ color: #88925C;    margin: 30px 0;}

.wmItemText h3 { color: #88925C;    margin: 20px 0;}



/* Blog Category Layout */
.blog.com-content-category-blog {
    width: 100%;
    margin: 0;
    padding: 0 0 70px;
}

/* Main H1 */
.blog.com-content-category-blog > h1,
.blog.com-content-category-blog .page-header > h1 {
    width: 100%;
    margin: 0 0 34px;
    padding: 34px 24px;
    background: #AD976E;
    color: #fff;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.03em;
}

/* Subcategories menu wrapper */
.blog.com-content-category-blog .cat-children {
    max-width: 1440px;
    margin: 0 auto 44px;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* Remove Joomla default child spacing */
.blog.com-content-category-blog .com-content-category-blog__child {
    margin: 0;
    padding: 0;
}

/* Remove default h3 look */
.blog.com-content-category-blog .cat-children .page-header,
.blog.com-content-category-blog .cat-children .item-title {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: inherit;
    line-height: inherit;
}

/* Subcategory buttons */
.blog.com-content-category-blog .cat-children .item-title a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 26px;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

/* Αγγειοχειρουργική */
.blog.com-content-category-blog .cat-children .com-content-category-blog__child:nth-child(1) .item-title a {
    background: #A81C23;
}

/* Πλαστική Χειρουργική */
.blog.com-content-category-blog .cat-children .com-content-category-blog__child:nth-child(2) .item-title a {
    background: #88925C;
}

.blog.com-content-category-blog .cat-children .item-title a:hover,
.blog.com-content-category-blog .cat-children .item-title a:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    filter: brightness(1.04);
}

/* Articles grid wrapper */
.blog.com-content-category-blog .blog-items {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

/* Kill Joomla column defaults if they interfere */
.blog.com-content-category-blog .blog-items.columns-2,
.blog.com-content-category-blog .blog-items.columns-3,
.blog.com-content-category-blog .blog-items.masonry-2,
.blog.com-content-category-blog .blog-items.masonry-3 {
    column-count: initial;
}

/* Item wrapper */
.blog.com-content-category-blog .blog-item {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Card */
.blog.com-content-category-blog .wm-blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(173, 151, 110, 0.22);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog.com-content-category-blog .wm-blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(173, 151, 110, 0.48);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.13);
}

/* Image */
.blog.com-content-category-blog .wm-blog-card__image {
    position: relative;
    overflow: hidden;
    background: #f5f2ed;
    aspect-ratio: 16 / 9;
}

.blog.com-content-category-blog .wm-blog-card__image figure,
.blog.com-content-category-blog .wm-blog-card__image .item-image {
    width: 100%;
    height: 100%;
    margin: 0;
    float: none;
}

.blog.com-content-category-blog .wm-blog-card__image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog.com-content-category-blog .wm-blog-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.blog.com-content-category-blog .wm-blog-card:hover .wm-blog-card__image img {
    transform: scale(1.045);
}

/* Card body */
.blog.com-content-category-blog .wm-blog-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px 28px 28px;
}

/* Title */
.blog.com-content-category-blog .wm-blog-card__title {
    margin: 0 0 14px;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.blog.com-content-category-blog .wm-blog-card__title-link {
    color: #1f1f1f;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__title-link:hover,
.blog.com-content-category-blog .wm-blog-card__title-link:focus {
    color: #A81C23;
    text-decoration: none;
}

/* Meta */
.blog.com-content-category-blog .wm-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: #777;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.blog.com-content-category-blog .wm-blog-card__category {
    color: #AD976E;
    text-decoration: none;
    font-weight: 700;
}

.blog.com-content-category-blog .wm-blog-card__category:hover,
.blog.com-content-category-blog .wm-blog-card__category:focus {
    color: #A81C23;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__meta-separator {
    color: #bbb;
}

.blog.com-content-category-blog .wm-blog-card__date {
    color: #777;
}

/* Intro */
.blog.com-content-category-blog .wm-blog-card__intro {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

/* Read more if enabled later */
.blog.com-content-category-blog .wm-blog-card__readmore {
    margin-top: auto;
    padding-top: 24px;
}

.blog.com-content-category-blog .wm-blog-card__readmore .btn,
.blog.com-content-category-blog .wm-blog-card__readmore a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    background: #AD976E;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
}

.blog.com-content-category-blog .wm-blog-card__readmore .btn:hover,
.blog.com-content-category-blog .wm-blog-card__readmore a:hover {
    background: #A81C23;
    color: #fff;
}

/* Blog responsive */
@media (max-width: 991px) {
    .blog.com-content-category-blog .blog-items {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blog.com-content-category-blog .wm-blog-card__body {
        padding: 22px;
    }
}

@media (max-width: 575px) {
    .blog.com-content-category-blog > h1,
    .blog.com-content-category-blog .page-header > h1 {
        padding: 28px 18px;
        margin-bottom: 26px;
    }

    .blog.com-content-category-blog .cat-children {
        padding: 0 18px;
        margin-bottom: 34px;
        justify-content: stretch;
    }

    .blog.com-content-category-blog .cat-children .com-content-category-blog__child {
        width: 100%;
    }

    .blog.com-content-category-blog .cat-children .item-title a {
        width: 100%;
    }

    .blog.com-content-category-blog .blog-items {
        padding: 0 18px;
    }

    .blog.com-content-category-blog .wm-blog-card {
        border-radius: 20px;
    }

    .blog.com-content-category-blog .wm-blog-card__title {
        font-size: 22px;
    }
}



/* Blog category layout */
.blog.com-content-category-blog {
    width: 100%;
    margin: 0;
    padding: 0 0 70px;
}

.blog.com-content-category-blog > h1,
.blog.com-content-category-blog .page-header > h1 {
    width: 100%;
    margin: 0 0 34px;
    padding: 34px 24px;
    background: #AD976E;
    color: #fff;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.03em;
}

/* Subcategory menu */
.blog.com-content-category-blog .cat-children {
    max-width: 1440px;
    margin: 0 auto 44px;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.blog.com-content-category-blog .com-content-category-blog__child,
.blog.com-content-category-blog .cat-children .page-header,
.blog.com-content-category-blog .cat-children .item-title {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: inherit;
    line-height: inherit;
}

.blog.com-content-category-blog .cat-children .item-title a {
    min-height: 48px;
    padding: 13px 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.blog.com-content-category-blog .cat-children .com-content-category-blog__child:nth-child(1) .item-title a {
    background: #A81C23;
}

.blog.com-content-category-blog .cat-children .com-content-category-blog__child:nth-child(2) .item-title a {
    background: #88925C;
}

.blog.com-content-category-blog .cat-children .item-title a:hover,
.blog.com-content-category-blog .cat-children .item-title a:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

/* Article grid */
.blog.com-content-category-blog .blog-items {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.blog.com-content-category-blog .blog-items.columns-2,
.blog.com-content-category-blog .blog-items.columns-3,
.blog.com-content-category-blog .blog-items.masonry-2,
.blog.com-content-category-blog .blog-items.masonry-3 {
    column-count: initial;
}

.blog.com-content-category-blog .blog-item {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Blog card */
.blog.com-content-category-blog .wm-blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(173, 151, 110, 0.22);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog.com-content-category-blog .wm-blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(173, 151, 110, 0.48);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.13);
}

.blog.com-content-category-blog .wm-blog-card__image {
    position: relative;
    overflow: hidden;
    background: #f5f2ed;
    aspect-ratio: 16 / 9;
}

.blog.com-content-category-blog .wm-blog-card__image figure,
.blog.com-content-category-blog .wm-blog-card__image .item-image,
.blog.com-content-category-blog .wm-blog-card__image a {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    float: none;
}

.blog.com-content-category-blog .wm-blog-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.blog.com-content-category-blog .wm-blog-card:hover .wm-blog-card__image img {
    transform: scale(1.045);
}

.blog.com-content-category-blog .wm-blog-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px 28px 28px;
}

.blog.com-content-category-blog .wm-blog-card__title {
    margin: 0 0 14px;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.blog.com-content-category-blog .wm-blog-card__title-link {
    color: #1f1f1f;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__title-link:hover,
.blog.com-content-category-blog .wm-blog-card__title-link:focus {
    color: #B89F72;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__meta {
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.blog.com-content-category-blog .wm-blog-card__category {
    color: #9B855D;
    font-weight: 700;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__category:hover,
.blog.com-content-category-blog .wm-blog-card__category:focus {
    color: #B89F72;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__meta-separator {
    color: #c8bda8;
}

.blog.com-content-category-blog .wm-blog-card__date {
    color: #777;
}

.blog.com-content-category-blog .wm-blog-card__intro {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

/* Read more, if enabled */
.blog.com-content-category-blog .wm-blog-card__readmore {
    margin-top: auto;
    padding-top: 24px;
}

.blog.com-content-category-blog .wm-blog-card__readmore .btn,
.blog.com-content-category-blog .wm-blog-card__readmore a {
    padding: 11px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #AD976E;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__readmore .btn:hover,
.blog.com-content-category-blog .wm-blog-card__readmore a:hover {
    background: #B89F72;
    color: #fff;
}

/* Global pagination */
.com-content-category-blog__navigation {
    max-width: 1440px;
    margin: 46px auto 0;
    padding: 0 24px;
    clear: both;
}

.com-content-category-blog__counter {
    float: none !important;
    margin: 0 0 18px;
    padding: 0 !important;
    color: #8C7853;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.pagination__wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pagination {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(173, 151, 110, 0.30);
    border-radius: 999px;
    background: #fff;
    color: #8C7853;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(173, 151, 110, 0.10);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pagination .page-link:hover,
.pagination .page-link:focus {
    background: #B89F72;
    border-color: #B89F72;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(173, 151, 110, 0.24);
}

.pagination .active .page-link,
.pagination .page-item.active .page-link {
    background: #AD976E;
    border-color: #AD976E;
    color: #fff;
    box-shadow: 0 14px 30px rgba(173, 151, 110, 0.28);
}

.pagination .disabled .page-link,
.pagination .page-item.disabled .page-link {
    background: #fff;
    color: rgba(140, 120, 83, 0.35);
    border-color: rgba(173, 151, 110, 0.16);
    opacity: 1;
    pointer-events: none;
    box-shadow: none;
}

/* Pagination icon fallback */
.pagination .page-link .icon-angle-left,
.pagination .page-link .icon-angle-right,
.pagination .page-link .icon-angle-double-left,
.pagination .page-link .icon-angle-double-right {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit !important;
    font-size: 0;
    line-height: 1;
}

.pagination .page-link .icon-angle-left::before {
    content: "‹";
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.pagination .page-link .icon-angle-right::before {
    content: "›";
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.pagination .page-link .icon-angle-double-left::before {
    content: "«";
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.pagination .page-link .icon-angle-double-right::before {
    content: "»";
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .blog.com-content-category-blog .blog-items {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blog.com-content-category-blog .wm-blog-card__body {
        padding: 22px;
    }
}

@media (max-width: 575px) {
    .blog.com-content-category-blog > h1,
    .blog.com-content-category-blog .page-header > h1 {
        margin-bottom: 26px;
        padding: 28px 18px;
    }

    .blog.com-content-category-blog .cat-children {
        margin-bottom: 34px;
        padding: 0 18px;
        justify-content: stretch;
    }

    .blog.com-content-category-blog .cat-children .com-content-category-blog__child,
    .blog.com-content-category-blog .cat-children .item-title a {
        width: 100%;
    }

    .blog.com-content-category-blog .blog-items {
        padding: 0 18px;
    }

    .blog.com-content-category-blog .wm-blog-card {
        border-radius: 20px;
    }

    .blog.com-content-category-blog .wm-blog-card__title {
        font-size: 22px;
    }
}




/* START: WM Blog Article */

.wm-blog-article {
    --wm-article-accent: #AD976E;
    --wm-article-accent-dark: #8f7a56;
    --wm-article-accent-soft: #f3eee6;
    --wm-article-text: #1f1f1f;
    --wm-article-muted: #6f6a61;
    --wm-article-border: rgba(173, 151, 110, 0.28);
    --wm-article-shadow: 0 22px 55px rgba(20, 20, 20, 0.16);
    --wm-article-max: 1200px;
    --wm-article-text-max: 1000px;

    color: var(--wm-article-text);
}

.wm-blog-article__hero {
    width: 100%;
    background: #171717;
    border-bottom: 4px solid var(--wm-article-accent);
    padding: 35px 24px 35px;
    margin: 0 0 42px;
}

.wm-blog-article__hero-inner {
    width: 100%;
    max-width: var(--wm-article-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 44px;
}

.wm-blog-article__headline-area {
    flex: 1 1 80%;
    min-width: 0;
}

.wm-blog-article__title {
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.15rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin: 0;
    max-width: 940px;
}

.wm-blog-article__category {
    margin-top: 24px;
    font-size: 0.86rem;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wm-blog-article__category a,
.wm-blog-article__category span {
    color: var(--wm-article-accent);
    text-decoration: none;
}

.wm-blog-article__category a:hover,
.wm-blog-article__category a:focus {
    color: #fff;
    text-decoration: none;
}

.wm-blog-article__date-card {
    flex: 0 0 20%;
    min-width: 170px;
    max-width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #171717;
    background: #fff;
    padding: 28px 18px 24px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    position: relative;
}

.wm-blog-article__date-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid var(--wm-article-border);
    pointer-events: none;
}

.wm-blog-article__date-day {
    display: block;
    color: var(--wm-article-accent-dark);
    font-size: clamp(2.4rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.wm-blog-article__date-month {
    display: block;
    color: #171717;
    margin-top: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wm-blog-article__date-year {
    display: block;
    color: var(--wm-article-muted);
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1;
    letter-spacing: 0.18em;
}

.wm-blog-article__edit-tools,
.wm-blog-article__tags,
.wm-blog-article__links,
.wm-blog-article__toc,
.wm-blog-article__readmore {
    width: calc(100% - 48px);
    max-width: var(--wm-article-text-max);
    margin-left: auto;
    margin-right: auto;
}

.wm-blog-article__media {
    width: 100%;
    padding: 0 24px;
    margin: 0 0 54px;
}

.wm-blog-article__media-inner {
    width: 100%;
    max-width: var(--wm-article-max);
    margin: 0 auto;
}

.wm-blog-article__media-inner figure,
.wm-blog-article__media-inner .item-image {
    margin: 0;
}

.wm-blog-article__media-inner img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border: 0;
    box-shadow: var(--wm-article-shadow);
}

.wm-blog-article__content {
    width: 100%;
    padding: 0 24px;
}

.wm-blog-article__body {
    width: 100%;
    max-width: var(--wm-article-text-max);
    margin: 0 auto;
    color: var(--wm-article-text);
    font-size: clamp(1.06rem, 1.15vw, 1.2rem);
    line-height: 1.85;
}

.wm-blog-article__body > *:first-child {
    margin-top: 0;
}

.wm-blog-article__body p {
    margin: 0 0 1.35em;
}
.wm-blog-article__body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    border: 0;
}
/* .wm-blog-article__body h2,
.wm-blog-article__body h3,
.wm-blog-article__body h4 {
    color: #171717;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin: 2.1em 0 0.75em;
}

.wm-blog-article__body h2 {
    font-size: clamp(1.8rem, 2.4vw, 2.55rem);
}

.wm-blog-article__body h3 {
    font-size: clamp(1.45rem, 1.8vw, 1.9rem);
} */

.wm-blog-article__body h4 {
    font-size: 1.22rem;
}

.wm-blog-article__body a {
    color: var(--wm-article-accent-dark);
    text-decoration-color: rgba(173, 151, 110, 0.45);
    text-underline-offset: 0.2em;
    transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.wm-blog-article__body a:hover,
.wm-blog-article__body a:focus {
    color: #171717;
    text-decoration-color: var(--wm-article-accent);
}

.wm-blog-article__body blockquote {
    margin: 2.2em 0;
    padding: 28px 34px;
    color: #2b2b2b;
    background: var(--wm-article-accent-soft);
    border-left: 5px solid var(--wm-article-accent);
    font-size: 1.08em;
    line-height: 1.7;
}

.wm-blog-article__body ul,
.wm-blog-article__body ol {
    margin: 0 0 1.5em 1.25em;
    padding: 0;
}

.wm-blog-article__body li {
    margin: 0 0 0.55em;
}

.wm-blog-article__body strong {
    color: #171717;
}

.wm-blog-article__tags {
    margin-top: 28px;
    margin-bottom: 28px;
}

.wm-blog-article__toc {
    margin-bottom: 42px;
    padding: 24px 28px;
    background: #faf8f4;
    border-left: 4px solid var(--wm-article-accent);
}

.wm-blog-article__links {
    margin-top: 28px;
    margin-bottom: 28px;
}

.wm-blog-article__page-heading {
    width: calc(100% - 48px);
    max-width: var(--wm-article-max);
    margin: 0 auto 24px;
}

@media (max-width: 900px) {
    .wm-blog-article__hero {
        padding: 54px 20px 48px;
        margin-bottom: 34px;
    }

    .wm-blog-article__hero-inner {
        display: block;
    }

    .wm-blog-article__date-card {
        width: 150px;
        min-width: 150px;
        margin-top: 30px;
        padding: 22px 14px 20px;
        align-items: flex-start;
        text-align: left;
    }

    .wm-blog-article__date-card::before {
        inset: 8px;
    }

    .wm-blog-article__date-day {
        font-size: 3.4rem;
    }

    .wm-blog-article__media {
        padding: 0 20px;
        margin-bottom: 42px;
    }

    .wm-blog-article__content {
        padding: 0 20px;
    }

    .wm-blog-article__edit-tools,
    .wm-blog-article__tags,
    .wm-blog-article__links,
    .wm-blog-article__toc,
    .wm-blog-article__readmore,
    .wm-blog-article__page-heading {
        width: calc(100% - 40px);
    }
}

@media (max-width: 560px) {
    .wm-blog-article__hero {
        padding: 42px 18px 38px;
    }

    .wm-blog-article__title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .wm-blog-article__category {
        margin-top: 18px;
        font-size: 0.78rem;
    }

    .wm-blog-article__date-card {
        width: 132px;
        min-width: 132px;
        margin-top: 24px;
    }

    .wm-blog-article__date-day {
        font-size: 3rem;
    }

    .wm-blog-article__date-month {
        font-size: 0.88rem;
    }

    .wm-blog-article__date-year {
        font-size: 0.78rem;
    }

    .wm-blog-article__media {
        padding: 0 16px;
        margin-bottom: 34px;
    }

    .wm-blog-article__content {
        padding: 0 16px;
    }

    .wm-blog-article__body {
        font-size: 1.02rem;
        line-height: 1.78;
    }

    .wm-blog-article__body blockquote {
        padding: 22px 24px;
    }

    .wm-blog-article__edit-tools,
    .wm-blog-article__tags,
    .wm-blog-article__links,
    .wm-blog-article__toc,
    .wm-blog-article__readmore,
    .wm-blog-article__page-heading {
        width: calc(100% - 32px);
    }
}

/* END: WM Blog Article */

#plasticservices{ padding: 75px 0; padding-bottom: 0;}

.webmacModH3 {
     margin: 0 0 40px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 2.7vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: #111;
    text-align: center;   
}
#plasticservices .center{ max-width: 100%; padding: 0;}
.vp-services {
  width: 100%;
  overflow: hidden;
  background: #fff;
}



.vp-service-row {
  position: relative;
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(360px, 37.5vw, 620px);
}

.vp-service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 5vw, 86px);
  background: #fff;
  z-index: 2;
}

.vp-service-content h3 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.7vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: #111;
}

.vp-service-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vp-service-content li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 38px;
  line-height: 1.35;
}

.vp-service-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 24px;
  height: 1px;
  background: #ad976e;
}

.vp-service-content a {
  color: #111;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.vp-service-content a:hover {
  color: #ad976e;
}

.vp-service-media {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background: #ddd;
}

.vp-service-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Video δεξιά: ξεκινάει από τη μέση του 1440 και πάει μέχρι τέρμα δεξιά viewport */
.vp-media-right .vp-service-content {
  grid-column: 1 / 2;
}

.vp-media-right .vp-service-media {
  left: 50%;
  right: calc((1440px - 100vw) / 2);
}

/* Video αριστερά: ξεκινάει τέρμα αριστερά viewport και σταματάει στη μέση του 1440 */
.vp-media-left .vp-service-content {
  grid-column: 2 / 3;
}

.vp-media-left .vp-service-media {
  left: calc((1440px - 100vw) / 2);
  right: 50%;
}

@media (max-width: 1488px) {
  .vp-media-right .vp-service-media {
    right: -24px;
  }

  .vp-media-left .vp-service-media {
    left: -24px;
  }
}

@media (max-width: 768px) {
  .vp-services-title {
    width: calc(100% - 40px);
    margin-bottom: 22px;
  }

  .vp-service-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .vp-service-media {
    position: relative;
    left: auto !important;
    right: auto !important;
    width: 100%;
    height: 280px;
    order: 1;
  }

  .vp-service-content {
    order: 2;
    padding: 36px 24px 44px;
  }

  .vp-service-content h3 {
    font-size: 2rem;
  }
}


#news{ background-color: #E6E6E6; padding: 75px 0;}


.wm-blog-module {
    --wm-blog-accent: #AD976E;
    --wm-blog-text: #292621;
    --wm-blog-muted: #81786c;
    --wm-blog-line: rgba(173, 151, 110, 0.28);
    --wm-blog-bg: #fbfaf8;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(26px, 3vw, 46px);
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.wm-blog-module__item {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.wm-blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.wm-blog-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin: 0 0 20px;
    background: var(--wm-blog-bg);
}

.wm-blog-card__image::after {
    content: "";
    position: absolute;
    inset: auto 18px -1px 18px;
    height: 3px;
    background: var(--wm-blog-accent);
    transform: scaleX(0.34);
    transform-origin: left center;
    transition: transform 0.28s ease;
    pointer-events: none;
}

.wm-blog-card:hover .wm-blog-card__image::after {
    transform: scaleX(1);
}

.wm-blog-card__image a,
.wm-blog-card__image figure {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.wm-blog-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.wm-blog-card:hover .wm-blog-card__image img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
}

.wm-blog-card__body {
    position: relative;
    min-width: 0;
    padding-left: 18px;
}

.wm-blog-card__body::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        var(--wm-blog-accent),
        var(--wm-blog-line),
        transparent
    );
}

.wm-blog-card__title {
    margin: 0 0 9px;
    line-height: 1.18;
}

.wm-blog-card__title-link {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: color 0.22s ease, background-size 0.22s ease;
}

.wm-blog-card__title-link:hover,
.wm-blog-card__title-link:focus {
    color: var(--wm-blog-accent);
    background-size: 100% 1px;
    text-decoration: none;
}

.wm-blog-card__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--wm-blog-muted);
    line-height: 1.3;
    letter-spacing: 0.03em;
}

.wm-blog-card__date::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--wm-blog-accent);
    opacity: 0.75;
}

.wm-blog-card__intro {
    margin: 0;
    color: var(--wm-blog-text);
    line-height: 1.58;
}

@media (max-width: 991.98px) {
    .wm-blog-module {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
    }
}

@media (max-width: 575.98px) {
    .wm-blog-module {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .wm-blog-card__image {
        margin-bottom: 18px;
    }

    .wm-blog-card__body {
        padding-left: 15px;
    }
}




#vascularservices{background: #e6e6e6; padding: 75px 0;} 

/* ==================================================
   START: Vascular Services Section
   ================================================== */

.wm-vascular-services {
    position: relative;
    width: 100%;
    overflow: visible;
}

.wm-vascular-services__inner {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 0.9fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: stretch;
}

.wm-vascular-services__left {
    position: relative;
    min-width: 0;
}

.wm-vascular-services__sticky {
    position: sticky;
    top: 110px;
}

.wm-vascular-services__title {
    position: relative;
    margin: 0 0 1rem;
    padding-bottom: 1.05rem;
    letter-spacing: -0.045em;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 2.7vw, 2.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: #111;
}

.wm-vascular-services__title::after {
    content: "";
    display: block;
    width: 58px;
    height: 1px;
    margin-top: 1rem;
    background: #ad976e;
}

.wm-vascular-services__intro {
    margin: 0;
    font-size: clamp(0.92rem, 0.95vw, 1rem);
    line-height: 1.75;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.68);
}

.wm-vascular-services__center,
.wm-vascular-services__right {
    min-width: 0;
}

.wm-vascular-services__center {
    display: grid;
    gap: clamp(3rem, 5vw, 5.5rem);
}

.wm-vascular-services__right {
    display: flex;
    align-items: center;
}

.wm-vascular-service-card {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    isolation: isolate;
}

.wm-vascular-service-card__media {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 1.15rem;
    overflow: hidden;
    border-radius: 0;
}

.wm-vascular-service-card__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 58%,
        rgba(0, 0, 0, 0.22) 100%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
}

.wm-vascular-service-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transform: scale(1);
    filter: saturate(0.92) contrast(1.02);
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.wm-vascular-service-card__body {
    position: relative;
    padding-top: 0.1rem;
}

.wm-vascular-service-card__body::before {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    margin: 0 0 0.9rem;
    background: #A81C23;
    opacity: 0.45;
    transform-origin: left center;
    transform: scaleX(0.72);
    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}

.wm-vascular-service-card__title {
    margin: 0 0 0.55rem;
    line-height: 1.25;
    color: #151515;
    font-family: "Google Sans", Inter, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 800;
}

.wm-vascular-service-card__text {
    margin: 0;
    font-size: clamp(0.86rem, 0.9vw, 0.96rem);
    line-height: 1.7;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.62);
}

.wm-vascular-service-card::after {
    content: "";
    position: absolute;
    left: -0.75rem;
    right: -0.75rem;
    bottom: -0.9rem;
    height: 34%;
    z-index: -1;
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.wm-vascular-service-card:hover .wm-vascular-service-card__media::before {
    opacity: 1;
}

.wm-vascular-service-card:hover .wm-vascular-service-card__media img {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.05);
}

.wm-vascular-service-card:hover .wm-vascular-service-card__body::before {
    opacity: 1;
    transform: scaleX(1);
}

.wm-vascular-service-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.wm-vascular-service-card--centered {
    width: 100%;
}

/* Tablet */
@media (max-width: 991px) {
    .wm-vascular-services__inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }

    .wm-vascular-services__left {
        grid-column: 1 / -1;
    }

    .wm-vascular-services__sticky {
        position: static;
    }

    .wm-vascular-services__right {
        align-items: flex-start;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .wm-vascular-services__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .wm-vascular-services__center {
        gap: 2.5rem;
    }

    .wm-vascular-services__right {
        display: block;
    }

    .wm-vascular-service-card::after {
        display: none;
    }
}

/* ==================================================
   END: Vascular Services Section
   ================================================== */

/* ==================================================
   START: Vascular Services Section Animation Addon
   ================================================== */

.wm-vascular-js-ready .wm-vascular-animate-item {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--wm-delay, 0ms);
}

.wm-vascular-js-ready.is-visible .wm-vascular-animate-item {
    opacity: 1;
    transform: translateY(0);
}

.wm-vascular-js-ready .wm-vascular-animate-card {
    opacity: 1;
}

.wm-vascular-js-ready .wm-vascular-animate-card .wm-vascular-service-card__media {
    clip-path: inset(100% 0 0 0);
    transform: translateY(22px);
    transition:
        clip-path 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--wm-delay, 0ms);
}

.wm-vascular-js-ready.is-visible .wm-vascular-animate-card .wm-vascular-service-card__media {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
}

.wm-vascular-js-ready .wm-vascular-animate-card .wm-vascular-service-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: #ad976e;
    transform: translateY(0);
    transition: transform 0.9s cubic-bezier(0.83, 0, 0.17, 1);
    transition-delay: calc(var(--wm-delay, 0ms) + 120ms);
}

.wm-vascular-js-ready.is-visible .wm-vascular-animate-card .wm-vascular-service-card__media::after {
    transform: translateY(-101%);
}

.wm-vascular-js-ready .wm-vascular-animate-card .wm-vascular-service-card__body {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--wm-delay, 0ms) + 420ms);
}

.wm-vascular-js-ready.is-visible .wm-vascular-animate-card .wm-vascular-service-card__body {
    opacity: 1;
    transform: translateY(0);
}

.wm-vascular-js-ready .wm-vascular-services__title::after,
.wm-vascular-js-ready .wm-vascular-service-card__body::before {
    transform-origin: left center;
    transform: scaleX(0);
}

.wm-vascular-js-ready.is-visible .wm-vascular-services__title::after {
    transform: scaleX(1);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 280ms;
}

.wm-vascular-js-ready.is-visible .wm-vascular-service-card__body::before {
    transform: scaleX(0.72);
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease;
    transition-delay: calc(var(--wm-delay, 0ms) + 520ms);
}

.wm-vascular-js-ready.is-visible .wm-vascular-service-card:hover .wm-vascular-service-card__body::before {
    transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
    .wm-vascular-js-ready .wm-vascular-animate-item,
    .wm-vascular-js-ready .wm-vascular-animate-card .wm-vascular-service-card__media,
    .wm-vascular-js-ready .wm-vascular-animate-card .wm-vascular-service-card__body {
        opacity: 1;
        transform: none;
        clip-path: none;
        transition: none;
    }

    .wm-vascular-js-ready .wm-vascular-animate-card .wm-vascular-service-card__media::after {
        display: none;
    }

    .wm-vascular-js-ready .wm-vascular-services__title::after,
    .wm-vascular-js-ready .wm-vascular-service-card__body::before {
        transform: none;
        transition: none;
    }
}
.wm-vascular-js-ready.is-visible .wm-vascular-service-card:hover .wm-vascular-service-card__body::before {
    transform: scaleX(1);
    opacity: 1;
}
.wm-vascular-js-ready .wm-vascular-service-card__body::before {
    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}
.wm-vascular-js-ready.is-visible .wm-vascular-service-card__body::before {
    transition:
        transform 0.22s ease,
        opacity 0.22s ease;
    transition-delay: 0ms;
}

.wm-vascular-js-ready.is-visible .wm-vascular-service-card:hover .wm-vascular-service-card__body::before {
    transform: scaleX(1);
    opacity: 1;
    transition-delay: 0ms;
}
/* ==================================================
   END: Vascular Services Section Animation Addon
   ================================================== */

#slideshow{ margin-bottom: 75px;}
/* .slideshowTitle div { text-shadow: 0 0 30px #000 !important;} */




/* ==================================================
   RED STYLE
   ================================================== */

body.red .wmItemHeader::after {

background: linear-gradient(to top, #A81C23 0%, rgba(168, 28, 35, 0) 50%);

}

body.red .wmItemText h2{ color: #A81C23;    margin: 30px 0;}

body.red .wmItemText h3 { color: #A81C23;    margin: 20px 0;}
   /* ==================================================
   END RED STYLE
   ================================================== */