body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1b1f2b;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


h1, h2, h3, h4 {
    color: #ffffff;
}

.hero,
.casino-list,
.casino-grid,
.info-text,
.content-section,
.faq {
    background-image: url("img/gow0.webp")!important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}

.hero::before,
.casino-list::before,
.casino-grid::before,
.info-text::before,
.content-section::before,
.faq::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* затемнение */
    z-index: 0;
}

.hero > *,
.casino-list > *,
.casino-grid > *,
.info-text > *,
.content-section > *,
.faq > * {
    position: relative;
    z-index: 1;
}



.play-btn,
.play-now-btn {
    background: linear-gradient(to bottom, #ffd85c, #ffb100);
    color: #000;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
}

.play-btn:hover,
.play-now-btn:hover {
    background: linear-gradient(to bottom, #f5c241, #e89b00);
}


.main-header {
    background-color: #2a2f40;
    padding: 20px 0;
    border-bottom: 3px solid #ffcb05;
}

.main-header .logo img {
    height: 50px;
}

.logo-with-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-with-text img {
    height: 50px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color:  #ffcb05;
    white-space: nowrap;
}
.logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.hero {
    background: #1b1f2b;
    padding: 40px 0;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 280px;
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
    color: #ffcb05;
    margin-bottom: 10px;
}

.hero h1 span {
    font-size: 32px;
    display: block;
    margin-top: 5px;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0;
}

.labels {
    margin: 15px 0;
}

.label {
    display: inline-block;
    background-color: #ffffff22;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-right: 10px;
}

.label.licensed { color: black; }
.label.secure { color: black; }
.label.trusted { color: black; }

.note {
    font-size: 12px;
    opacity: 0.7;
}

.hero-top-casinos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    flex: 1;
    min-width: 280px;
}

.hero-top-casinos a.casino-box {
    display: block;
    background-color: #000;
    border: 2px solid #ffcb05;
    border-radius: 12px;
    padding: 10px;
    width: 140px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 10px #ffcb05aa;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-top-casinos a.casino-box:hover {
    background-color: #1e1e2f;
    transform: translateY(-4px);
    box-shadow: 0 0 15px #ffcb05;
}


.casino-box {
    background-color: #000;
    border: 2px solid #ffcb05;
    border-radius: 12px;
    padding: 10px;
    width: 140px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 10px #ffcb05aa;
}

.casino-box .rank {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #1a3;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: bold;
}

.casino-logo {
    width: 60px;
    height: 60px;
    margin: 10px auto;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
}

.casino-name {
    font-weight: bold;
    margin: 8px 0;
}

.stars {
    color: red;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-top-casinos {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero h1 span {
        font-size: 24px;
    }
}


.casino-list {
    background: transparent;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.casino-item {
    background: #2a2f40;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-wrap: nowrap;
    padding: 15px 20px;
    margin-bottom: 40px;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #ffb100;
    box-shadow: 0 0 12px #ffd70080;
    position: relative;
    min-height: 140px;
}

.casino-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px #ffcc00;
    border-color: #ffcc00;
}

.casino-item .rank-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #ffb100;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #ffb10099;
    z-index: 2;
}

.casino-item .left,
.casino-item .center,
.casino-item .right {
    flex: 1;
    padding: 10px;
    min-width: 240px;
}
.right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.circle-logo {
    width: 100px;
    height: 100px;
    display: block;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
    margin: 5px 0 10px 0;
    box-shadow: 0 0 8px rgba(255, 217, 0, 0.4);
}

.label {
    display: inline-block;
    background: #ffcb05;
    color: #000;
    font-weight: bold;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 6px;
    margin-top: -10px;
}

.label.red {
    background: #e53935;
    color: white;
}
.label.green {
    background: #43a047;
    color: white;
}

h3 {
    font-size: 16px;
    margin: 5px 0 8px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 5px 0 10px;
}
.features li {
    font-size: 14px;
    margin: 4px 0;
}
.features li::before {
    content: '⭐';
    margin-right: 5px;
    color: #ffb100;
}

.payment-icons img {
    height: 18px;
    margin-right: 6px;
}

.bonus {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.rating {
    font-size: 12px;
    color: #bbb;
    text-align: center;
    margin-bottom: 5px;
}

.score {
    width: 40px;
    height: 40px;
    background: #ffcb05;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 8px #ffcb05aa;
}

.play-btn {
    background: linear-gradient(to bottom, #f0ff84, #b4e841);
    color: #000;
    font-weight: bold;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 30px;
    min-width: 240px;
    text-align: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(255, 255, 100, 0.3);
    transition: all 0.3s ease;
}
.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(255, 255, 100, 0.5);
}

.flags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}
.flags img {
    width: 22px;
    margin: 2px;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .casino-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}




.casino-grid {
    background: #1b1f2b;
    padding: 60px 20px;
}

.casino-grid .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.grid-item {
    background: #2a2f40;
    border: 2px solid #ffb100;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 0 15px #ffd70088;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px #ffcc00;
    border-color: #ffcc00;
}

@media (max-width: 1024px) {
    .casino-grid .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .casino-grid .container {
        grid-template-columns: 1fr;
    }
}


.grid-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 10px;
    margin: 0 auto 15px;
}

.grid-item h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}

.stars {
    color: #ffb100;
    font-size: 18px;
    margin-bottom: 10px;
}

.offer {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 10px 0;
}

.details {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    color: #ccc;
    flex-grow: 1;
}

.details li {
    margin-bottom: 8px;
}

.flags-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin: 10px 0;
}

.flags-row img {
    width: 28px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.flags-row,
.payments {
    margin: 10px 0;
}

.flags-row img,
.payments img {
    height: 24px;
    margin: 2px;
    border-radius: 4px;
}

.play-now-btn {
    display: inline-block;
    background: linear-gradient(to bottom, #d5ff65, #8ddf3c);
    color: #000;
    font-weight: bold;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    margin: 10px auto 5px;
    transition: 0.3s ease;
}

.play-now-btn:hover {
    background: linear-gradient(to bottom, #c9f153, #75c62f);
    box-shadow: 0 0 10px #b4ff00;
}

.payments {
    margin-top: 10px;
}

.payments img {
    height: 26px;
    margin: 0 4px;
    vertical-align: middle;
}

@media (max-width: 1024px) {
    .grid-item {
        width: 100%;
        max-width: 400px;
    }
}


.info-text {
    background: #2a2f40;
    color: #fff;
    padding: 60px 20px;
    font-size: 16px;
    line-height: 1.6;
}

.info-text .container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-text h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.info-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.info-text p {
    margin-bottom: 20px;
    color: #e0e0e0;
}


.content-section {
    background: #2a2f40;
    padding: 60px 20px;
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.7;
}

.content-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 15px;
}

.content-section p {
    margin-bottom: 20px;
}

.content-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;

}

.content-images img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    border: 2px solid #ffb100;
    box-shadow: 0 0 12px #ffcb05aa;
}

.faq {
    background: #1b1f2b;
    padding: 60px 20px;
    color: #fff;
}

.faq .container {
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: bold;
}

.faq-item {
    border: 2px solid #ffb100;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #2a2f40;
    padding: 10px 15px;
}
.faq-question {
    color: #ffffff;
}

.faq-answer {
    background: #262b3d;
    color: #dddddd;
}
.faq-item summary {
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    list-style: none;
    outline: none;
}

.faq-item[open] summary {
    color: #ffd700;
}

.faq-item p {
    margin-top: 10px;
    padding-left: 10px;
    color: #e0e0e0;
}


.footer-banner {
    background: #151822;
    padding: 20px 0;
    text-align: center;
}

.footer-banner img {
    height: 40px;
    margin: 0 15px;
    vertical-align: middle;
}

.main-footer {
    background: #2a2f40;
    padding: 40px 20px 20px;
    color: #ccc;
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo img {
    height: 50px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.footer-column p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
    max-width: 300px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #aaaaaa;
}

.footer-bottom a {
    color: #ffb100;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        max-width: 100%;
    }
}

/* ===== Mobile compact cards (≤ 480px) ===== */
@media (max-width: 480px){

    :root{
        --pad:12px;        /* поля контейнера */
        --gap:10px;        /* расстояние между карточками */
        --btnCol:112px;    /* ширина колонки с кнопкой */
    }

    .casino-list .container{
        box-sizing:border-box;
        padding: var(--pad);
        min-height: 100svh;              /* высота экрана с учётом URL-бара */
        display: flex;
        flex-direction: column;
        gap: var(--gap);
        overflow: hidden;                 /* первый экран ровно на 3 карточки */
        background: transparent;
    }

    /* каждая карточка = ровно треть экрана с учётом отступов */
    .casino-item{
        box-sizing:border-box;
        height: calc((100svh - (var(--pad)*2) - (var(--gap)*2)) / 3);
        display: grid;
        grid-template-columns: 1fr var(--btnCol);
        grid-template-rows: auto 1fr auto;   /* шапка, бонус, платежки */
        grid-template-areas:
      "head  btn"
      "bonus btn"
      "pays  btn";
        gap: 8px 10px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    /* бейдж с номером оставляем, но делаем компактным */
    .casino-item .rank-badge{
        position: absolute;
        left: 10px;
        top: -12px;
        transform: none;
        width: 28px; height: 28px;
        font-size: 14px;
    }

    /* Шапка карточки: бейдж/лого/название */
    .casino-item .left{
        grid-area: head;
        display: grid;
        grid-template-columns: 44px 1fr;
        grid-auto-rows: auto;
        align-items: center;
        column-gap: 10px;
    }

    .casino-item .label{
        order: -1;
        justify-self: start;
        font-size: 10px;
        padding: 4px 6px;
        border-radius: 7px;
        margin: 0 0 4px 0;
    }

    .casino-item .circle-logo{
        width: 44px; height: 44px;
        border-radius: 50%;
    }

    .casino-item h3{
        margin: 0;
        font-size: 15px;
        line-height: 1.1;
    }

    /* Центр: краткий бонус, без лишнего */
    .casino-item .center{ grid-area: bonus; }
    .casino-item .center .bonus{
        margin: 0;
        font-size: 12.5px;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 3;   /* не больше 3 строк */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .casino-item .features,
    .casino-item .rating,
    .casino-item .score{ display: none !important; }

    /* Правая колонка — только кнопка, без абсолютов */
    .casino-item .right{
        grid-area: btn;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .casino-item .play-btn{
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 10px 8px;
        font-size: 13px;
        border-radius: 10px;
        white-space: nowrap;
    }

    /* Платёжки как круглые «пилюли» */
    .casino-item .payment-icons{
        grid-area: pays;
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
    }
    .casino-item .payment-icons img,
    .casino-item .payment-icons svg{
        width: 22px; height: 22px;
        padding: 6px;
        border-radius: 50%;
        background: #0f1a27;
        border: 1px solid rgba(255,255,255,.14);
        box-shadow: inset 0 0 0 2px rgba(255,255,255,.05);
    }
}






/* ================= Premium Cards — layout как на референсе ================= */

/* секция */
section.pt-cards{
    background:#243047;
    color:#fff;
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
    padding:16px clamp(10px,3vw,24px) 28px;
}
section.pt-cards .container{max-width:1100px;margin:0 auto}

/* вся карточка кликабельна — маска под контентом */
section.pt-cards .pt-card a{ text-decoration:none }
section.pt-cards .pt-card .card-mask{ position:absolute; inset:0; border-radius:inherit; z-index:1 }
section.pt-cards .pt-card > *:not(.card-mask){ position:relative; z-index:2 }

/* карточка (рамка + сетка 2 колонки) */
section.pt-cards .pt-card{
    --accent:#f4c84a;
    --radius:16px;
    --bg:#0f1a27;

    background:var(--bg);
    border:3px solid var(--accent);
    border-radius:var(--radius);
    box-shadow:0 0 0 3px rgba(255,255,255,.06) inset, 0 14px 28px rgba(0,0,0,.30);
    padding: clamp(16px,2.4vw,26px) clamp(18px,2.6vw,28px);
    margin: clamp(14px,2.4vw,24px) 0;

    display:grid;
    grid-template-columns: minmax(240px, 40%) 1fr; /* слева бренд, справа оффер */
    column-gap: clamp(18px,2.8vw,32px);
    align-items:center;                  /* вертикально всё по центру, как на макете */
}
section.pt-cards .pt-card.theme-gold{ --accent:#f4c84a }
section.pt-cards .pt-card.theme-red { --accent:#ff6b6b }
section.pt-cards .pt-card.theme-blue{ --accent:#40c3ff }

/* ===== левая колонка: лого → звезды → (Votes) → платежи ===== */
section.pt-cards .pt-card .brand-col{
    display:flex; flex-direction:column; align-items:flex-start;
    gap: clamp(8px,1.4vw,12px); min-width:0;
}
section.pt-cards .pt-card .brand-logo{
    width:100%; height: clamp(64px,9vw,80px);
    object-fit:contain; border-radius:10px; background:#172238;
}
section.pt-cards .pt-card .brand-name{
    margin-top:4px; font-weight:800;
    font-size: clamp(15px,1.9vw,18px); line-height:1.1;
}
section.pt-cards .pt-card .stars{ display:flex; gap: clamp(4px,.8vw,6px) }
section.pt-cards .pt-card .stars span{ font-size: clamp(16px,1.8vw,20px); color:#ffc62c; text-shadow:0 1px 0 #7a5600 }
section.pt-cards .pt-card .votes{ font-size: clamp(11px,1.6vw,13px); opacity:.85 }

section.pt-cards .pt-card .payments{ display:flex; gap: clamp(8px,1.2vw,12px); align-items:center }
section.pt-cards .pt-card .pay-icon{
    width: clamp(22px,2.2vw,28px); height: clamp(22px,2.2vw,28px);
    padding: clamp(5px,.9vw,7px);
    border-radius:50%; background:#0b1422;
    border:1px solid rgba(255,255,255,.15);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.05);
    object-fit:contain;
}

/* ===== правая колонка: оффер (крупно) → подпись → кнопка ===== */
section.pt-cards .pt-card .offer-col{
    display:grid;
    grid-template-rows: auto auto auto;        /* заголовок, подпись, кнопка */
    justify-items:end;                          /* всё вправо, как на скрине */
    align-items:center;
    row-gap: clamp(8px,1.4vw,12px);
    text-align:right; min-width:0;
}

section.pt-cards .pt-card .bonus-top{
    margin:0; font-weight:900;
    font-size: clamp(26px,3.6vw,40px);         /* большой жирный оффер */
    line-height:1.15;
}
section.pt-cards .pt-card .bonus-top .strong{ color:#ff4d88 }

section.pt-cards .pt-card .bonus-sub{
    margin:0; font-size: clamp(13px,1.8vw,16px); opacity:.95;
}

section.pt-cards .pt-card .cta{
    justify-self:end;
    display:inline-flex; align-items:center; justify-content:center;
    min-width: clamp(170px, 18vw, 220px);
    height: clamp(46px, 5.2vw, 54px);
    padding:0 clamp(16px,2.2vw,22px);
    font-weight:900; font-size: clamp(14px,1.8vw,16px);
    color:#fff; background:#1ec15e; border-radius:14px;
    box-shadow:0 6px 0 #0e873a;
}
section.pt-cards .pt-card .cta:active{ transform:translateY(2px); box-shadow:0 4px 0 #0e873a }

/* убираем возможные «ленты», чтобы не мешали */
section.pt-cards .pt-card .ribbon,
section.pt-cards .pt-card .strip{ display:none !important }

/* =================== АДАПТИВ =================== */

/* планшет 720–980: немного уже левая колонка */
@media (max-width: 980px){
    section.pt-cards .pt-card{ grid-template-columns: minmax(200px, 38%) 1fr; }
}

/* мобильный ≤ 640: компактная двухколоночная сетка, всё ровно */
@media (max-width: 640px){
    section.pt-cards .pt-card{
        padding:12px; border-radius:14px;
        grid-template-columns: 96px 1fr;         /* узкая инфо + правая колонка */
        column-gap:12px; row-gap:8px;
        align-items:start;
    }

    section.pt-cards .pt-card .brand-logo{ height:56px }
    section.pt-cards .pt-card .brand-name{ font-size:13px }
    section.pt-cards .pt-card .stars span{ font-size:16px }
    section.pt-cards .pt-card .votes{ font-size:11px }
    section.pt-cards .pt-card .pay-icon{ width:20px; height:20px; padding:5px }

    section.pt-cards .pt-card .offer-col{
        grid-template-rows: auto auto auto;
        justify-items:end; align-items:start;
    }
    section.pt-cards .pt-card .bonus-top{ font-size:20px; line-height:1.22 }
    section.pt-cards .pt-card .bonus-sub{ font-size:12px }
    section.pt-cards .pt-card .cta{ min-width:146px; height:44px; font-size:14px }
}
/* делаем всю карточку кликабельной */
section.pt-cards .pt-card{ position: relative; cursor: pointer; }

/* маска поверх всего */
section.pt-cards .pt-card .card-mask{
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 10;                /* выше контента */
    display: block;
}

/* пропускаем клики через контент, КРОМЕ кнопки */
section.pt-cards .pt-card .brand-col,
section.pt-cards .pt-card .offer-col{ pointer-events: none; }

section.pt-cards .pt-card .cta{
    position: relative;
    z-index: 11;                /* выше маски */
    pointer-events: auto;       /* кнопка кликается */
}

/* чтобы текст/ссылки внутри не подчеркивались */
section.pt-cards .pt-card a{ text-decoration: none; }
