.prod-cases {
    background: #ffffff;
    padding: 100px 0;
}
.prod-cases__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.prod-cases__header {
    text-align: center;
    margin-bottom: 32px;
}
.prod-cases__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.50);
    margin-bottom: 10px;
    line-height: 28px;
}
.prod-cases__title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px;
    line-height: 1.2;
}
.prod-cases__sub {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.70);
    line-height: 28px;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
}
.prod-cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.prod-cases__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 32px 24px;
    display: flex;
    flex-direction: column;
  align-items: flex-start;
    box-shadow: 0px 2px 4px 0px #00000024, 0px 0px 2px 0px #0000001F;
}
.prod-cases__logo-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    height: 48px;
}
.prod-cases__logo {
    max-height: 28px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
}
.prod-cases__card-name {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0 0 10px;
}
.prod-cases__card-body {
    flex: 1;
    margin-bottom: 32px;
}
.prod-cases__card-body p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.65;
    margin: 0;
}
a.prod-cases__card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #3040CF;
    text-decoration: none;
    line-height: 18px;
    margin-top: auto;
   border-bottom: 1px solid transparent;
    transition: all 0.2s ease 0s;
}
a.prod-cases__card-link:hover {
    text-decoration: none;
  border-bottom: 1px solid #3040CF;
}
@media (max-width: 1024px) {
    .prod-cases {
        padding: 70px 0;
    }
  .prod-cases__container {
        padding: 0 20px;
    }
    .prod-cases__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-cases__title {
        font-size: 38px;
    }
    .prod-cases__header {
        margin-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .prod-cases {
        padding: 55px 0;
    }
    .prod-cases__container {
        padding: 0 15px;
    }
    .prod-cases__title {
        font-size: 32px;
    }
    .prod-cases__sub {
        font-size: 15px;
    }
    .prod-cases__card {
        padding: 24px 24px 20px;
    }
}
