* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* === HERO SECTION === */
.wissen-hero {
    background: #f9f6f1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content-resources {
    max-width: 560px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 10px;
}

.hero-content-resources h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.05;
    color: #222;
    margin-bottom: 10px;
}

.gold-line {
    width: 70px;
    height: 2px;
    background: #b68a43;
    margin-bottom: 5px;
}

.hero-content-resources p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 5px;
}

/* === SEARCH BOX === */
.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9c9c9c;
    font-size: 16px;
}

.search-box input {
    width: 100%;
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    padding-left: 55px;
    padding-right: 23px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.search-box input:focus {
    border-color: #b68a43;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

/* === IMAGE ===*/
.hero-image {
    overflow: hidden;
    border-radius: 4px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/*=== CATEGORY SECTION ===*/
.category-section {
    background: #fff;
    padding: 25px 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.category-item {
    text-align: center;
    padding: 10px 15px;
    border-right: 1px solid #ededed;
    transition: .35s;
}

.category-item:last-child {
    border-right: none;
}

.category-item:hover {
    transform: translateY(-6px);
}

.icon {
    width: 78px;
    height: 78px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    transition: .35s;
}

.icon i {
    font-size: 28px;
    color: #444;
}

.category-item:hover .icon {
    background: #b68a43;
    border-color: #b68a43;
}

.category-item:hover .icon i {
    color: #fff;
}

.category-item h4 {
    margin-top: 18px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

/*=== RESPONSIVE ===*/
@media(max-width:991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-content-resources {
        max-width: 100%;
    }

    .hero-content-resources h1 {
        font-size: 48px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .category-item {
        border: none;
    }
}

/*=== TOP ARTICLES ===*/
.articles-section {
    padding: 20px 0;
    background: #faf8f4;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
    gap: 30px;
}

.section-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #8a8a8a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 35px;
    line-height: 1.1;
    font-weight: 500;
    color: #222;
}

.view-all {
    color: #a47b36;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
    padding: 15px 0px;
}

.view-all:hover {
    gap: 14px;
}

/*========================*/
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-card {
    background: #fff;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.article-image {
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .6s;
}

.article-card:hover img {
    transform: scale(1.08);
}

.article-content {
    padding: 15px;
}

.category {
    font-size: 11px;
    letter-spacing: 2px;
    color: #999;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.article-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 10px;
    color: #222;
}

.article-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 500;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #999;
}

/*=== Responsive ===*/
@media(max-width:992px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header h2 {
        font-size: 44px;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*=== RESOURCES ===*/
.resources-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 30px;
    align-items: center;
    padding: 15px 20px 15px 30px;
    background: #f3eee7;
}

/* LEFT */
.resource-info {
    display: flex;
    align-items: center;
    gap: 35px;
}

.resource-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.resource-icon i {
    font-size: 48px;
    color: #333;
}

.resource-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 35px;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1.1;
}

.resource-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 600px;
}

.resource-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #222;
    color: #222;
    font-size: 14px;
    letter-spacing: 1px;
    transition: .3s;
}

.resource-btn:hover {
    background: #222;
    color: #fff;
}

/* RIGHT */
.downloads {
    background: #fff;
    border: 1px solid #ececec;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
    transition: .3s;
}

.download-item:last-child {
    border-bottom: none;
}

.download-item:hover {
    background: #fafafa;
}

.download-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.download-left i {
    font-size: 24px;
    color: #777;
}

.download-left h4 {
    font-size: 17px;
    font-weight: 500;
    color: #222;
    margin-bottom: 0px;
}

.download-left span {
    font-size: 13px;
    color: #999;
}

.download-item a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #444;
    transition: .3s;
}

.download-item a:hover {
    background: #b68a43;
    color: #fff;
}

.download-footer {
    padding: 25px 28px;
}

/*=== Responsive ===*/
@media(max-width:1100px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {
    .resources-section {
        padding: 60px 0;
    }

    .resource-info {
        flex-direction: column;
        text-align: center;
    }

    .resource-content h2 {
        font-size: 38px;
    }

    .resource-content p {
        font-size: 15px;
    }

    .download-item {
        padding: 18px;
    }

    .download-left {
        gap: 12px;
    }

    .download-left h4 {
        font-size: 15px;
    }

    .download-left span {
        font-size: 12px;
    }

    .articles-section {
        padding: 20px 0;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-image img {
        height: 230px;
    }

    .article-content {
        padding: 22px;
    }

    .article-content h3 {
        font-size: 28px;
    }
}

.news-faq-section {
    padding: 25px 0;
    background: #faf8f3;
}

.news-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.news-column h2,
.faq-column h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 35px;
    font-weight: 600;
    margin: 5px 0 15px;
    line-height: 1.15;
}

/*=== NEWS ===*/
.news-table {
    border: 1px solid #ececec;
    background: #fff;
}

.news-row {
    display: grid;
    grid-template-columns: 90px 1fr 40px;
    align-items: center;
    border-bottom: 1px solid #ececec;
    transition: .3s;
}

.news-row:last-child {
    border-bottom: none;
}

.news-row:hover {
    background: #faf7f2;
}

.news-date {
    text-align: center;
    border-right: 1px solid #ececec;
    padding: 22px 10px;
}

.news-date strong {
    display: block;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
}

.news-date span {
    font-size: 14px;
    color: #666;
}

.news-content {
    padding: 15px 15px;
}

.news-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.news-content p {
    font-size: 14px;
    color: #666;
}

.news-arrow {
    text-align: center;
    font-size: 18px;
}

/*=== FAQ ===*/
.faq-box {
    border: 1px solid #ececec;
    background: #fff;
}

.faq-box details {
    border-bottom: 1px solid #ececec;
}

.faq-box details:last-child {
    border-bottom: none;
}

.faq-box summary {
    list-style: none;
    cursor: pointer;
    padding: 25px 15px;
    font-size: 17px;
    font-weight: 500;
    position: relative;
}

.faq-box summary::-webkit-details-marker {
    display: none;
}

.faq-box summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 28px;
}

.faq-box details[open] summary::after {
    content: "−";
}

.faq-box p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.8;
}

.bottom-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: #a87a2a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.bottom-link:hover {
    gap: 14px;
}

@media(max-width:991px) {
    .news-faq-grid {
        grid-template-columns: 1fr;
    }

    .news-column h2,
    .faq-column h2 {
        font-size: 40px;
    }
}

@media(max-width:768px) {
    .news-row {
        grid-template-columns: 70px 1fr 30px;
    }

    .news-date strong {
        font-size: 28px;
    }

    .news-content h4 {
        font-size: 18px;
    }

    .news-column h2,
    .faq-column h2 {
        font-size: 34px;
    }
}









/* Large Desktop */
@media (max-width: 1399px) {
    /* .wissen-hero {
        padding: 15px 0;
    } */
}

/* Desktop */
@media (max-width: 1199px) {
    .wissen-hero {
        padding: 15px 0;
    }
}

/* Laptop */
@media (max-width: 991px) {
    .wissen-hero {
        padding: 15px 0;
    }
}

/* Tablet */
@media (max-width: 767px) {
    .wissen-hero {
        padding: 15px 0;
    }

    .hero-content-resources h1 {
        font-size: 38px;
    }

    .hero-content-resources p {
        font-size: 15px;
    }

    .search-box input {
        height: 56px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon {
        width: 65px;
        height: 65px;
    }

    .icon i {
        font-size: 22px;
    }

    .category-item h4 {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .wissen-hero {
        padding: 15px 0;
    }

    .hero-content-resources h1 {
        font-size: 32px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .resource-content h2 {
        font-size: 28px;
    }

    .resource-content p {
        max-width: 260px;
    }

    .resources-grid {
        display: grid;
        gap: 30px;
        align-items: center;
        padding: 15px 15px 15px 15px;
        background: #f3eee7;
    }

    .hero-grid{
        gap:40px;
    }

    .hero-content-resources h1{
        font-size:48px;
    }

    .articles-grid{
        gap:18px;
    }

    .news-row{
        display:grid;
        grid-template-columns:55px 1fr;
        gap:12px;
    }

    .news-date{
        padding:15px 5px;
    }

    .news-date strong{
        font-size:24px;
    }

    .news-date span{
        font-size:12px;
    }

    .news-content{
        padding:15px 10px 15px 0;
    }

    .news-content h4{
        font-size:16px;
        line-height:1.4;
    }

    .news-content p{
        font-size:13px;
        line-height:1.5;
    }

    .news-arrow{
        display:none;
    }
}