html {
    font-size: 62.5%;
    font-size: calc(1em * .625);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #1a1a1a;
}

.contentContainer {
    max-width: 160rem;
    margin: 0 auto;
    padding: 0 16px 48px;
}

.siteHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    background-color: #fff;
    min-height: 70px;
    box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.4);
    padding: 10px;
}

.siteHeader__left,
.siteHeader__right {
    display: flex;
    align-items: center;
    gap: 65px;
}

.siteHeader__right {
    padding-right: 17px;
}

.siteHeader__left {
    flex-wrap: wrap;
}

.siteHeader__brand {
    display: inline-flex;
    align-items: center;
}

.siteHeader__logo {
    height: 48px;
    width: auto;
    display: block;
}

.siteHeader__link,
.siteHeader__shop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.siteHeader__link,
.siteHeader__shop {
    color: #333;
    line
}

.siteHeader__link:hover,
.siteHeader__shop:hover {
    color: #000;
}

.siteHeader__link:focus-visible,
.siteHeader__shop:focus-visible,
.siteHeader__brand:focus-visible {
    outline: 3px solid rgba(0, 86, 164, 0.35);
    outline-offset: 3px;
}

.siteHeader__icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.siteHeader__icon--arrow {
    background-image: url('../img/arrow-left-blue.png');
    width: 10px;
}

.siteHeader__icon--shop {
    background-image: url('../img/icon-shop.png');
    width: 20px;
}

@media (max-width: 600px) {
    .siteHeader__right {
        width: 100%;
        justify-content: flex-start;
    }
}

.landingContainer {
    text-align: center;
    margin-bottom: 30px;
}

.landingTitle {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 2.419rem;
    line-height: 2.419rem;
    text-transform: uppercase;
}

.landingSubTitle {
    font-weight: 400;
    font-size: 2.016rem;
    line-height: 2.016rem;
    margin-top: 15px;
    margin-bottom: 10px;
}

.cataloguesContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.card {
    padding: 0;
    overflow: hidden;
    flex: 1 1 calc(50% - 24px);
    min-width: 260px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

@media screen and (max-width: 1100px) {
    .card {
        max-width: 460px;
    }
}

.card:hover {
    transform: translateY(-4px);
}

.card a {
    text-align: center;
    display: flex;
    text-decoration: none;
    justify-content: center;
}

.card:hover .cover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.cover {
    height: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
}

@media screen and (max-width: 1600px) {
    .cover {
        height: 440px;
    }
}

.description {
    text-align: center;
    padding: 10px 24px;
    display: flex;
    flex-direction: column;
}

.publicationName {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.6rem;
    margin: 15px 0 5px 0;
    text-transform: uppercase;
}

.publicationPeriod {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.6rem;
}

.emptyState {
    text-align: center;
    padding: 40px 0;
    width: 100%;
}

.emptyState__title {
    margin: 0 0 12px;
    font-size: 18px;
    color: #777;
    font-weight: 600;
}

.emptyState__hint {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.emptyState__hint a {
    color: #0056a4;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .card {
        flex: 1 1 100%;
    }
}

#webpublication-iframe {
    display: none;
}
.fullscreenOpened #webpublication-iframe {
    display: block;
}