* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f2f4f6;
    color: #222;
}

.iwt-acc-hero {
    position: relative;
    padding: 90px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* obrazek */
.iwt-acc-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* gradient */
.iwt-acc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* treść */
.iwt-acc-hero-content {
    position: relative;
    z-index: 2;
}


.iwt-acc-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.iwt-acc-link:hover .iwt-acc-card {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

.iwt-acc-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.iwt-acc-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* WRAPPER */
.iwt-acc-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    gap: 35px;
}

/* CARD */
.iwt-acc-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.35s ease;
}

.iwt-acc-card:hover {
    transform: translateY(-6px);
}

.iwt-acc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iwt-acc-text {
    padding: 25px 30px;
}

.iwt-acc-text h3 {
    color: #0a3d62;
    margin-bottom: 10px;
}

.iwt-acc-text p {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FOOTER CTA */
.iwt-acc-footer {
    text-align: center;
    padding: 40px 20px 70px;
}

.iwt-acc-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #0a3d62;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.iwt-acc-btn:hover {
    background: #07406f;
    box-shadow: 0 0 18px rgba(10,61,98,0.5);
}

/* MOBILE */
@media(max-width: 800px) {
    .iwt-acc-card {
        grid-template-columns: 1fr;
    }
}
