/*
Theme Name: My Twenty Twenty Child Theme
Theme URI: https://example.com
Description: A child theme for Twenty Twenty.
Author: Your Name
Author URI: https://example.com/
Template: twentytwenty
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Header menu text color override */
.primary-menu a,
.header-navigation a,
.header-nav a,
#site-header .primary-menu a {
    color: #000;
}

/* Blog archive page styling - same as front page blog section */
.blog .site-content,
.archive .site-content,
.search .site-content {
    background: #f8f9fa;
}

/* 2 column grid layout for blog posts */
.blog #site-content,
.archive #site-content,
.search #site-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Card layout for blog posts */
.blog article,
.archive article,
.search article {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog article:hover,
.archive article:hover,
.search article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Reorder elements: featured image first, then title, then content */
.blog article,
.archive article,
.search article {
    display: flex;
    flex-direction: column;
}

.blog .entry-header,
.archive .entry-header,
.search .entry-header {
    order: 2;
    padding: 1.5rem 2rem 0;
    background: white;
}

.blog .featured-image,
.archive .featured-image,
.search .featured-image {
    order: 1;
    margin: 0;
}

.blog .post-inner,
.archive .post-inner,
.search .post-inner {
    order: 3;
    padding: 0 2rem 2rem;
}

.blog .entry-header .entry-title,
.archive .entry-header .entry-title,
.search .entry-header .entry-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Hide meta info but keep title */
.blog .entry-header .entry-categories,
.archive .entry-header .entry-categories,
.search .entry-header .entry-categories,
.blog .entry-header .post-meta-wrapper,
.archive .entry-header .post-meta-wrapper,
.search .entry-header .post-meta-wrapper {
    display: none;
}

.blog .entry-content,
.archive .entry-content,
.search .entry-content {
    margin-bottom: 0;
}

/* Hide post separators on blog pages */
.blog .post-separator,
.archive .post-separator,
.search .post-separator {
    display: none;
}

/* Add page title header for blog pages to match other pages */
.blog #site-content::before,
.archive #site-content::before,
.search #site-content::before {
    content: "ISO9001:2026 関連記事";
    display: block;
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    padding: 6.5rem 2rem;
    background: #fff;
    grid-column: 1 / -1;
    order: -1;
    margin-bottom: 2rem;
}

/* For archive pages, show appropriate titles */
.archive #site-content::before {
    content: "Archive";
}

.search #site-content::before {
    content: "Search Results";
}

/* Ensure consistent top padding for both columns */
.blog article:nth-child(even),
.archive article:nth-child(even),
.search article:nth-child(even) {
    padding-top: 80%;
}

/* Ensure left column also has consistent padding */
.blog article:nth-child(odd),
.archive article:nth-child(odd),
.search article:nth-child(odd) {
    padding-top: 80px;
}

/* Change entry-title on pages to h5 styling */
.page .entry-title {
    font-size: 4rem;
    font-weight: 700;
    margin: 0.5rem 0;
    line-height: 1.4;
}

/* Reset the default h1 styling for entry-title on pages */
.page .entry-header .entry-title {
    font-size: 4rem;
    font-weight: 700;
    margin: 0.5rem 0;
    line-height: 1.4;
}

/* Responsive: single column on mobile */
@media (max-width: 768px) {
    .blog #site-content,
    .archive #site-content,
    .search #site-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Styles */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* entry-headerエレメントを非表示（フロントページのみ） */
body.home .entry-header {
    display: none;
}

/* post-innerエレメント自体を非表示（フロントページのみ） */
body.home .post-inner {
    display: none;
}

/* メニューアイテム「お問い合わせ」にCTAボタンスタイルを適用 */
.menu-cta > a {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #ff6b35;
    color: white !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

#menu-item-34 a:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: white;
}

/* プライマリメニューにFlexboxレイアウトを適用 */
.primary-menu.reset-list-style {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Stickyヘッダー対応 */
#site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 管理バー表示時のヘッダー位置調整 */
.admin-bar #site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar #site-header {
        top: 46px;
    }
}

/* ヘッダーの背景を確実に表示 */
.header-navigation-wrapper {
    background-color: inherit;
}

/* header-innerの上下paddingを調整（!importantを使わずに詳細度で上書き） */
.header-inner {
    padding: 0.5rem 0;
}

@media ( min-width: 700px ) {
    .header-inner {
        padding: 0.5rem 0;
    }
}

@media ( min-width: 1000px ) {
    .header-inner {
        padding: 0.5rem 0;
    }
}

/* カスタムHeroセクション */
.custom-hero {
    position: relative;
    min-height: 600px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image picture,
.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-image img {
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*
    background: linear-gradient(135deg,
        rgba(44, 90, 160, 0.8) 0%,
        rgba(44, 90, 160, 0.6) 50%,
        rgba(255, 107, 53, 0.7) 100%);
    */
        z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}


.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: #ff6b35;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button.primary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.cta-button.secondary:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down span {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}


/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .custom-hero {
        min-height: 500px;
        max-height: 500px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 280px;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .custom-hero {
        min-height: 550px;
        max-height: 550px;
    }

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

/* 既存のカバーヘッダー設定を無効化（フロントページのみ） */
body.home .cover-header-inner-wrapper.screen-height {
    display: none;
}

/* 背景画像エリア外のコンテンツ配置 */
.custom-hero + * {
    position: relative;
    z-index: 2;
    background-color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* モバイル：背景画像エリア高さ調整 */
    .cover-header-inner-wrapper.screen-height {
        min-height: 100vh;
        max-height: 100vh;
    }
}

/* タブレット用ブレイクポイント */
@media (min-width: 769px) and (max-width: 1023px) {
    .cover-header-inner-wrapper.screen-height {
        min-height: 100vh;
        max-height: 100vh;
    }
}

/* デスクトップ用ブレイクポイント */
@media (min-width: 1024px) {
    .cover-header-inner-wrapper.screen-height {
        min-height: 200vh;
        max-height: 200vh;
    }
}

@media (max-width: 599px) {
    .custom-youtube .video-detail-card {
        padding: 1.75rem;
    }

    .custom-youtube .video-card-header {
        gap: 1rem;
    }

    .custom-youtube .video-card-icon {
        width: 52px;
        height: 52px;
        font-size: 2rem;
    }

    .custom-youtube .video-card-title {
        font-size: 1.4rem;
    }
}

/* カスタムセクション共通スタイル */
.custom-services,
.custom-benefits,
.custom-process {
    padding: 5rem 0;
}

.custom-youtube {
    background: white;
}

.custom-youtube .video-details {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    color: #333;
}

.custom-youtube .video-detail-card {
    width: 100%;
    max-width: 720px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    line-height: 1.8;
}

.custom-youtube .video-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.custom-youtube .video-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #3f6bcc 100%);
    color: #fff;
}

.custom-youtube .video-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2f5c;
    margin: 0;
}

.custom-youtube .video-summary {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.custom-youtube .video-key-points {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.custom-youtube .video-key-points li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.custom-youtube .video-transcript-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: underline;
}

.custom-youtube .video-transcript-link::after {
    content: '→';
    font-size: 0.9rem;
}

.custom-youtube .video-transcript-link:hover,
.custom-youtube .video-transcript-link:focus {
    text-decoration: none;
}

.comments-area,
.no-comments,
#respond,
.comment-respond {
    display: none !important;
}

.custom-services {
    background: #f8f9fa;
}

.custom-process {
    background: white;
}

.custom-blog {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    /* font-size: 2.5rem; */
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

/* サービスセクション */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

.custom-services .service-detail-link,
.custom-process .process-detail-link {
    color: #1f2f5c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.custom-services .service-detail-link:hover,
.custom-services .service-detail-link:focus {
    color: #2c5aa0;
    text-decoration: underline;
}

.custom-process .process-detail-link:hover,
.custom-process .process-detail-link:focus {
    color: #2c5aa0;
    text-decoration: none;
}

/* プロセスセクション - Apple風ミニマル＆スマートデザイン */
.custom-process {
    background:
        radial-gradient(1200px 600px at 100% -10%, rgba(37, 99, 235, 0.06), transparent 60%),
        radial-gradient(900px 500px at -10% 0%, rgba(14, 165, 233, 0.08), transparent 60%),
        #f5f7fb;
}

.process-timeline {
    display: grid;
    gap: clamp(16px, 2.2vw, 22px);
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(16px, 2vw, 22px);
    padding: clamp(18px, 2.6vw, 28px);
    border-radius: 18px;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    will-change: transform;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(2, 6, 23, 0.1), 0 4px 10px rgba(2, 6, 23, 0.06);
}

.step-number {
    width: clamp(52px, 6vw, 64px);
    height: clamp(52px, 6vw, 64px);
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #2c5aa0;
    color: #fff;
    font-weight: 800;
    font-size: clamp(18px, 2.3vw, 22px);
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
    }

.step-number::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    /*
    background:
        radial-gradient(120% 120% at 60% 10%, rgba(255, 255, 255, 0.9) 0 20%, rgba(255, 255, 255, 0.35) 30%, transparent 60%),
        radial-gradient(80% 80% at 70% 70%, rgba(255, 255, 255, 0.06), transparent 60%);
    */
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.step-content h3 {
    margin: 2px 0 8px;
    font-size: clamp(18px, 2.1vw, 24px);
    font-weight: 700;
    letter-spacing: 0.005em;
    color: #0f172a;
}

.step-content p {
    margin: 0;
    color: #616b7b;
    line-height: 1.75;
    font-size: clamp(18px, 1.8vw, 18px);
}

/* アイテム間の薄い区切り（大画面のみ） */
.process-step + .process-step {
    position: relative;
}

@media (min-width: 900px) {
    .process-step + .process-step::before {
        content: "";
        position: absolute;
        left: calc(clamp(18px, 2.6vw, 28px) + 32px);
        right: clamp(18px, 2.6vw, 28px);
        top: -12px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(2, 6, 23, 0.08), transparent);
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .service-item,
    .benefit-item,
    .process-step {
        padding: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ブログセクション */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-placeholder {
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 3rem;
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #2c5aa0;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 1.25rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.blog-date {
    font-weight: 500;
}

.blog-category {
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 1.25rem;
    color: #666;
}

.blog-more {
    text-align: center;
    margin-top: 3rem;
}

.more-posts-button {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.75rem;
    transition: background 0.3s ease;
}

.more-posts-button:hover {
    background: #1e3f73;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
    font-style: italic;
}

/* YouTubeセクション */
.youtube-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.video-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
}

.video-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-placeholder p {
    font-size: 1.2rem;
    margin: 0;
}

/* ブログセクション レスポンシブ */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* YouTubeセクション モバイル対応 */
    .video-container {
        max-width: 100%;
        margin: 0 1rem;
    }

    .video-icon {
        font-size: 3rem;
    }

    .video-placeholder p {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====================================================================
   COOKIE CONSENT (Minimal)
   ==================================================================== */
.cookie-consent {
  display: none; /* JS toggles to block when needed */
  position: fixed;
  inset: auto 0 0 0; /* bottom:0; left:0; right:0 */
  z-index: 9999;
  background: rgba(30, 42, 58, 0.98); /* var(--footer-bg)-like */
  color: #fff;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.cookie-consent__text {
  margin: 0 !important;
  font-family: var(--font-japanese) !important;
  font-size: var(--font-size-small) !important;
  color: rgba(255,255,255,0.9) !important;
  padding: 20px !important;
}

.cookie-consent__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-consent__btn {
  appearance: none;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-japanese);
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.cookie-consent__btn--accept {
  background: #07aedb;
  color: #0c2238;
  font-weight: var(--font-weight-bold);
  border: 2px solid #07aedb;
  margin: 12px 4px;
}

.cookie-consent__btn--accept:hover {
  filter: brightness(1.05);
}

.cookie-consent__btn--details {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  margin: 12px 4px;
}

.cookie-consent__btn--details:hover {
  border-color: #fff;
}

@media (max-width: 720px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent__actions {
    justify-content: space-between;
  }
  .cookie-consent__btn {
    width: 100%;
    text-align: center;
  }
}
