/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.4rem;
    line-height: 1.5;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #d4af37; /* Gold accent */
    text-decoration: none;
}

a:hover {
    color: #ffda6a; /* Lighter gold on hover */
}

.grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d4af37;
}

.button {
    background-color: #d4af37; /* Gold */
    color: #1a1a1a;
    border: 1px solid #d4af37;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0s, color 0s, border-color 0s; /* Instant change */
}

.button:hover {
    background-color: #ffda6a; /* Lighter gold */
    color: #1a1a1a;
    border-color: #ffda6a;
}

.button.secondary {
    background-color: #4a4a4a;
    color: #e0e0e0;
    border: 1px solid #4a4a4a;
}

.button.secondary:hover {
    background-color: #6a6a6a;
    color: #ffffff;
    border-color: #6a6a6a;
}

.button.hollow {
    background-color: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
}

.button.hollow:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    background-color: #0d0d0d;
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo img {
    height: 40px;
    width: auto;
}

.main-nav .menu {
    background-color: transparent;
}
@media (max-width:575px) {
    .menu{
    display: block!important;
}
}
.main-nav .menu li a {
    color: #e0e0e0;
    font-weight: 600;
    padding: 0.7rem 1rem;
    transition: color 0s, background-color 0s; /* Instant change */
}

.main-nav .menu li a:hover {
    color: #d4af37;
    background-color: transparent;
}

/* Hero Section */
.hero-section {
    background-color: #1a1a1a;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
}

.hero-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.hero-button {
    align-self: flex-start;
}

.hero-image-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(26, 26, 26, 0) 100%);
    z-index: 2;
    border-radius: 8px;
}

/* Featured Article Section */
.featured-article-section {
    padding: 4rem 0;
    background-color: #222222;
    border-radius: 8px;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.featured-article-block {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.featured-article-image-column {
    position: relative;
}

.featured-article-image {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.featured-article-text-column {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-article-text-column .article-date {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    display: block;
}

.featured-article-text-column .article-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.featured-article-text-column .article-excerpt {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* Articles Grid Section */
.articles-grid-section {
    padding: 4rem 0;
    background-color: #1a1a1a;
}
@media (max-width:767px) {
    .articles-grid-section {
         padding: 1.6rem 0;
    }
}
.article-card {
    background-color: #222222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    cursor: pointer;
    transition: transform 0s, box-shadow 0s; /* Instant change */
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.article-card .card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card .card-section {
    padding: 1.5rem;
}

.article-card .article-date {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    display: block;
}

.article-card .article-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.article-card .article-teaser {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

/* Latest News Section */
.latest-news-section {
    padding: 4rem 0;
    background-color: #222222;
    border-radius: 8px;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.latest-news-featured {
    margin-bottom: 3rem;
}

.latest-news-featured .latest-news-image-column {
    position: relative;
}

.latest-news-featured .latest-news-image {
    height: 350px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

.latest-news-featured .latest-news-text-column {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.latest-news-featured .article-date {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    display: block;
}

.latest-news-featured .article-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.latest-news-featured .article-excerpt {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.latest-news-list .article-card.compact {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.latest-news-list .article-card.compact .card-image-wrapper {
    height: 150px;
}

.latest-news-list .article-card.compact .card-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.latest-news-list .article-card.compact .article-card-title {
    font-size: 1.1rem;
}

.latest-news-list .article-card.compact .article-teaser {
    font-size: 0.85rem;
}

/* About Author Section (About Us) */
.about-author-section {
    padding: 4rem 0;
    background-color: #1a1a1a;
}

.about-content-block {
    background-color: #222222;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    padding: 2rem;
}

.about-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 2rem;
}

.about-image {
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-text-column {
    padding-left: 2rem;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.about-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #cccccc;
    font-size: 1rem;
}

.timeline-list li i {
    color: #d4af37;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Social Share Buttons */
.social-share-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
}

.social-share-buttons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #333333;
    color: #e0e0e0;
    font-size: 1.1rem;
    transition: background-color 0s, color 0s; /* Instant change */
}

.social-share-buttons .social-icon:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    padding: 4rem 0 1rem 0;
    border-top: 1px solid #2a2a2a;
    color: #a0a0a0;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
    cursor: pointer; /* For mobile toggler */
}

.footer-heading::after {
    content: '\F230'; /* Plus icon for Bootstrap Icons */
    font-family: 'bootstrap-icons';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    font-size: 0.8rem;
    transition: transform 0s; /* Instant change */
}

.footer-heading.active::after {
    content: '\F22D'; /* Minus icon */
    transform: rotate(0deg); /* No rotation animation */
}

@media screen and (min-width: 64em) { /* Foundation large breakpoint */
    .footer-heading::after {
        display: none;
    }
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.7rem;
}

.footer-nav li a {
    color: #a0a0a0;
    font-size: 0.95rem;
    transition: color 0s; /* Instant change */
}

.footer-nav li a:hover {
    color: #d4af37;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-icons a {
    color: #a0a0a0;
    font-size: 1.5rem;
    transition: color 0s; /* Instant change */
}

.social-icons a:hover {
    color: #d4af37;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2a2a2a;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Article Modal Styling */
.article-modal {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    max-height: 90vh;
    overflow-y: auto;
}

.article-modal .close-button {
    color: #e0e0e0;
    font-size: 2rem;
    top: 1rem;
    right: 1rem;
    transition: color 0s; /* Instant change */
}

.article-modal .close-button:hover {
    color: #d4af37;
}

.article-modal-content {
    padding: 1rem;
}

.article-modal-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.article-modal-meta {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    display: block;
}

.article-modal-image {
    width: 100%;
    
    
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.article-modal-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.article-modal-share {
    margin-top: 2.5rem;
    border-top: 1px solid #333333;
    padding-top: 1.5rem;
}

/* Image Overlays for readability */
.article-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.featured-article-image-column .article-image-overlay,
.latest-news-featured .latest-news-image-column .article-image-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

/* Cookie Consent Modal Specific Styles */
.cookie-modal {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding:1rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.cookie-modal-title {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-modal-text {
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.cookie-categories, .cookie-settings {
    text-align: left;
    margin-bottom: 0.5rem;
}

.cookie-category, .cookie-category-setting {
    background-color: #222222;
    border-radius: 6px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #333333;
}

.reveal {
    height: auto;
    min-height: auto;
}

.cookie-category label, .cookie-category-setting label {
    display: inline-block;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    cursor: default; /* Not interactive directly */
}

.cookie-category-setting label {
    cursor: pointer;
}

.cookie-category input[type="checkbox"], .cookie-category-setting input[type="checkbox"] {
    margin-right: 10px;
    vertical-align: middle;
    transform: scale(1.2);
    accent-color: #d4af37;
}

.cookie-category-setting input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-category .category-description, .cookie-category-setting .category-description {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.cookie-modal-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-policy-link-text {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.cookie-policy-link-text a {
    color: #d4af37;
    text-decoration: underline;
}

.cookie-settings {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333333;
}

.cookie-settings-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookie-settings .button {
    margin-top: 1.5rem;
    margin-right: 1rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 63.999em) { /* Medium and small screens */
    .hero-section {
        padding: 4rem 0;
    }

    .hero-text-column {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-button {
        align-self: center;
    }

    .hero-image-overlay {
        background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.3) 100%);
    }

    .featured-article-block {
        flex-direction: column;
    }

    .featured-article-image-column, .featured-article-text-column {
        padding: 0;
    }

    .featured-article-text-column {
        padding: 2rem;
    }

    .featured-article-image {
        height: 300px;
    }

    .featured-article-text-column .article-title {
        font-size: 1.6rem;
    }

    .latest-news-featured .latest-news-image {
        height: 250px;
    }

    .latest-news-featured .latest-news-text-column {
        padding: 2rem;
    }

    .latest-news-featured .article-title {
        font-size: 1.5rem;
    }

    .about-content-block {
        flex-direction: column;
    }

    .about-image-column, .about-text-column {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .about-image {
        margin-bottom: 2rem;
    }

    .footer-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid #333333;
    }

    .footer-heading::after {
        display: inline-block;
    }

    .footer-nav {
        display: none;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .footer-nav.is-active {
        display: block;
    }

    .footer-column:last-of-type .footer-heading {
        border-bottom: none;
    }

    .cookie-modal-actions {
        flex-direction: column;
    }

    .cookie-modal-actions .button {
        width: 100%;
        margin-bottom: 10px;
    }

    .cookie-settings .button {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 39.999em) { /* Small screens */
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .header .logo img {
        height: 35px;
    }

    .main-nav .menu li a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .featured-article-text-column .article-title {
        font-size: 1.4rem;
    }

    .latest-news-featured .article-title {
        font-size: 1.3rem;
    }

    .article-modal-title {
        font-size: 1.8rem;
    }

    .cookie-modal-title {
        font-size: 1.5rem;
    }
}
/* Styles for content within .complianceCoreSlot */
.complianceCoreSlot {
    padding: 2rem 1.5rem; /* Padding top/bottom and left/right */
    margin-bottom: 3rem; /* Margin below the entire block */
    background-color: #222222; /* Slightly lighter background for the content block */
    border-radius: 8px; /* Rounded corners for the block */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

.complianceCoreSlot h1 {
    font-size: 2rem; /* Moderate font size for main headings */
    color: #ffffff; /* White color for headings */
    margin-bottom: 1.2rem; /* Spacing below heading */
    line-height: 1.2; /* Line height for readability */
    font-weight: 700; /* Bold font weight */
}

.complianceCoreSlot h2 {
    font-size: 1.7rem; /* Moderate font size for sub-headings */
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

.complianceCoreSlot h3 {
    font-size: 1.4rem; /* Moderate font size for smaller headings */
    color: #ffffff;
    margin-bottom: 0.9rem;
    line-height: 1.4;
    font-weight: 600;
}

.complianceCoreSlot h4 {
    font-size: 1.2rem; /* Small heading size */
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-weight: 500;
}

.complianceCoreSlot h5 {
    font-size: 1rem; /* Very small heading size, often for labels or minor titles */
    color: #ffffff;
    margin-bottom: 0.7rem;
    line-height: 1.6;
    font-weight: 500;
}

.complianceCoreSlot p {
    font-size: 1rem; /* Standard paragraph font size */
    color: #cccccc; /* Light grey for body text */
    margin-bottom: 1rem; /* Spacing between paragraphs */
    line-height: 1.7; /* Line height for improved readability */
}

.complianceCoreSlot ul {
    list-style: disc; /* Standard disc list style */
    padding-left: 1.5rem; /* Indentation for list items */
    margin-bottom: 1rem; /* Spacing below the list */
    color: #cccccc; /* Light grey for list text */
}

.complianceCoreSlot li {
    font-size: 1rem; /* Standard font size for list items */
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.6; /* Line height for readability */
    color: #cccccc; /* Light grey for list item text */
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 63.999em) { /* Medium and small screens */
    .complianceCoreSlot {
        padding: 1.5rem 1rem;
    }

    .complianceCoreSlot h1 {
        font-size: 1.8rem;
    }

    .complianceCoreSlot h2 {
        font-size: 1.5rem;
    }

    .complianceCoreSlot h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 39.999em) { /* Small screens */
    .complianceCoreSlot h1 {
        font-size: 1.6rem;
    }

    .complianceCoreSlot h2 {
        font-size: 1.4rem;
    }

    .complianceCoreSlot h3 {
        font-size: 1.2rem;
    }

    .complianceCoreSlot p,
    .complianceCoreSlot ul,
    .complianceCoreSlot li {
        font-size: 0.95rem;
    }
}
.custom-social-share-09cx {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* Кнопка share */
.custom-share-toggle-09cx {
  cursor: pointer;
  font-size: 24px;
  color: #000;
}

/* Остальные соцсети */
.custom-social-options-09cx {
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none; /* скрытые кнопки не кликабельны */
  transition: all 0.3s ease;
}

/* Показываем соцсети */
.custom-social-options-09cx.show-09cx {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Иконки соцсетей */
.custom-social-icon-09cx {
  font-size: 20px;
  color: #000;
  transition: transform 0.2s;
}

.custom-social-icon-09cx:hover {
  transform: scale(1.2);
  color: #0077b5; /* пример цвета при ховере */
}
