@charset "UTF-8";
/**
 * PE-LOG TOP Page Styles
 * TOPページ専用のスタイルシート
 * 他ページには影響しません
 * 
 * ※すべてのクラス名に pelog- プレフィックスを付与して
 *   既存のstyle.cssとの衝突を回避
 */

/* =========================================
   CSS Variables
   ========================================= */
:root {
    --pelog-bg-white: #ffffff;
    --pelog-bg-black: #111111;
    --pelog-bg-gray: #f4f4f5;
    --pelog-text-main: #1d1d1f;
    --pelog-accent: #0071e3;
    --pelog-accent-orange: #ff9f0a;
    --pelog-accent-green: #3e6750;
    --pelog-note-color: #41c9b4;
    --pelog-radius: 16px;
}

/* =========================================
   TOP Page Body Reset
   ========================================= */
html:has(body.pelog-top-page) {
    overflow-x: hidden !important;
}

.pelog-top-page {
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    padding-top: 0 !important;
}

/* Cocoonデフォルトの要素を非表示/リセット */
.pelog-top-page .content,
.pelog-top-page #content {
    margin: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
}

.pelog-top-page .content::before {
    display: none !important;
}

.pelog-top-page .main,
.pelog-top-page #main {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.pelog-top-page #sidebar {
    display: none !important;
}

.pelog-top-page .breadcrumb {
    display: none !important;
}

.pelog-top-page .header-container,
.pelog-top-page #header-container {
    display: none !important;
}

.pelog-top-page .footer,
.pelog-top-page #footer {
    display: none !important;
}

.pelog-top-page .go-to-top {
    display: none !important;
}

.pelog-top-page .mobile-header-menu-buttons {
    display: none !important;
}

.pelog-top-page .navi-footer-in {
    display: none !important;
}

/* homeクラスの既存スタイルをリセット */
.pelog-top-page.home .header-in:before {
    display: none !important;
}

.pelog-top-page.home .content:before {
    display: none !important;
}

/* =========================================
   1. HEADER (TOP専用)
   ========================================= */
.pelog-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 70px;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.pelog-header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pelog-header-logo img {
    height: 40px;
    display: block;
}

.pelog-header-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pelog-nav-link {
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    color: var(--pelog-text-main);
    text-decoration: none;
    transition: background 0.2s;
}

.pelog-nav-link:hover {
    background: #eee;
    opacity: 1;
}

.pelog-nav-search {
    background: #000;
    color: #fff !important;
    margin-left: 5px;
}

.pelog-nav-search:hover {
    background: #333;
}

/* =========================================
   2. HERO SECTION
   ========================================= */
.pelog-hero-fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: translateZ(0);
}

.pelog-hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pelog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    margin-top: -50px;
}

.pelog-hero-main-logo {
    width: 520px;
    max-width: 85%;
    height: auto;
    margin-bottom: 40px;
    display: inline-block;
}

/* Hero Search */
.pelog-hero-search-wrapper {
    margin: 0 auto;
    background: #fff;
    z-index: 2;
    border-radius: 50px;
    width: 380px;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pelog-search-group {
    display: table;
    width: 100%;
}

.pelog-search-group > * {
    display: table-cell;
    vertical-align: middle;
}

.pelog-search-icon {
    width: 50px;
    text-align: center;
    border: none;
    background: none;
    padding-left: 10px;
}

.pelog-search-icon img {
    width: 25px;
    height: 25px;
    display: block;
    margin: 0 auto;
    opacity: 0.5;
}

.pelog-search-input {
    width: auto;
}

.pelog-search-input input {
    padding: 10px 5px;
    border: none !important;
    box-shadow: none !important;
    font-size: 16px;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    outline: none !important;
    border-radius: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.pelog-search-submit {
    width: 100px;
}

.pelog-search-submit button {
    border: none;
    -webkit-appearance: none;
    appearance: none;
    text-align: center;
    box-sizing: border-box;
    color: #fff;
    height: 50px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50px;
    display: block;
    border: solid 5px #fff;
    width: 100%;
    cursor: pointer;
    background: linear-gradient(135deg, #618772 0%, #3e6750 100%);
    transition: transform 0.2s, opacity 0.2s;
}

.pelog-search-submit button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Scroll Indicator */
.pelog-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--pelog-accent-green);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: pelog-bounce 2s infinite;
}

.pelog-scroll-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
}

.pelog-scroll-icon {
    font-size: 36px;
}

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

/* =========================================
   3. EXPLORE BY STYLE (Gray Section)
   ========================================= */
.pelog-gray-section {
    position: relative;
    z-index: 2;
    background: var(--pelog-bg-gray);
    color: var(--pelog-text-main);
    padding: 80px 0 100px;
    margin-top: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.pelog-gray-section::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -20%;
    width: 140%;
    height: 100px;
    background: var(--pelog-bg-gray);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.pelog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.pelog-section-header-gray {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 50px;
}

.pelog-section-title-gray {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    color: var(--pelog-text-main);
}

.pelog-section-desc-gray {
    color: #666;
    font-size: 0.9rem;
}

/* Curation Grid */
.pelog-curation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pelog-pixel-icon {
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
    display: block;
}

.pelog-curation-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: var(--pelog-radius);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.pelog-curation-card:hover {
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pelog-curation-thumb-mask {
    height: 150px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #eee;
}

.pelog-curation-thumb-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.pelog-curation-card:hover .pelog-curation-thumb-mask img {
    transform: scale(1.1);
}

.pelog-curation-icon-box {
    position: absolute;
    top: 126px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pelog-curation-body {
    padding: 35px 20px 20px;
    flex-grow: 1;
}

.pelog-curation-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px;
    display: block;
    color: var(--pelog-text-main);
}

.pelog-curation-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 3em;
}

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

.pelog-curation-list li {
    font-size: 0.8rem;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 12px;
}

.pelog-curation-list li::before {
    content: "›";
    color: var(--pelog-accent);
    position: absolute;
    left: 0;
}

.pelog-curation-list li:hover {
    color: var(--pelog-accent);
}

.pelog-curation-list li a {
    color: inherit;
    text-decoration: none;
}

.pelog-curation-more-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pelog-accent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    text-decoration: none;
}

.pelog-curation-more-link:hover {
    border-bottom-color: var(--pelog-accent);
    opacity: 0.8;
}

/* =========================================
   4. RECOMMENDED (Black Section)
   ========================================= */
.pelog-black-section {
    position: relative;
    z-index: 2;
    background: var(--pelog-bg-black);
    color: #fff;
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* City Line Animation */
.pelog-line-animation-container {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    overflow: visible;
    z-index: 10;
}

.pelog-city-line-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: bottom left;
    animation: pelog-city-scroll 40s linear infinite;
}

@keyframes pelog-city-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Walker Dog */
.pelog-walker-dog {
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 64px;
    image-rendering: pixelated;
    z-index: 20;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.1s;
}

.pelog-walker-dog:active {
    transform: scale(0.9);
}

.pelog-walker-jump {
    animation: pelog-jump-anim 0.5s ease-out;
}

@keyframes pelog-jump-anim {
    0% { bottom: 0; }
    50% { bottom: 60px; }
    100% { bottom: 0; }
}

.pelog-bonus-item {
    position: absolute;
    left: 15%;
    bottom: 60px;
    z-index: 21;
    font-size: 24px;
    pointer-events: none;
    margin-left: 20px;
    animation: pelog-item-pop 0.8s ease-out forwards;
}

@keyframes pelog-item-pop {
    0% { opacity: 1; transform: translateY(0) scale(0.5); }
    50% { opacity: 1; transform: translateY(-40px) scale(1.5); }
    100% { opacity: 0; transform: translateY(-70px) scale(1); }
}

/* Section Header Dark */
.pelog-section-header-dark {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.pelog-section-title-dark {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
    color: #fff;
}

.pelog-section-desc-dark {
    color: #ccc;
    font-size: 0.9rem;
}

/* Slider */
.pelog-slider-wrapper {
    position: relative;
    margin: 0 -24px;
}

.pelog-slider-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50px;
    background: linear-gradient(to right, var(--pelog-bg-black), transparent);
    z-index: 2;
    pointer-events: none;
}

.pelog-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    background: linear-gradient(to left, var(--pelog-bg-black), transparent);
    z-index: 2;
    pointer-events: none;
}

.pelog-pickup-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 24px 30px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.pelog-pickup-slider::-webkit-scrollbar {
    display: none;
}

.pelog-pickup-card {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    background: #222;
    border-radius: var(--pelog-radius);
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.2s;
    flex-shrink: 0;
    text-decoration: none;
}

.pelog-pickup-card:hover {
    transform: translateY(-4px);
    border-color: var(--pelog-accent-orange);
}

.pelog-pickup-thumb {
    height: 160px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.pelog-pickup-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.pelog-pickup-card:hover .pelog-pickup-thumb img {
    transform: scale(1.1);
}

.pelog-pickup-body {
    padding: 20px;
}

.pelog-pickup-badge {
    background: var(--pelog-accent-orange);
    color: #000;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
}

.pelog-pickup-title {
    font-weight: 700;
    margin-top: 5px;
    color: #fff;
}

/* Slider Buttons */
.pelog-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}

.pelog-slider-btn:hover {
    background: var(--pelog-accent-orange);
    color: #000;
    border-color: var(--pelog-accent-orange);
}

.pelog-slider-btn.prev {
    left: 16px;
}

.pelog-slider-btn.next {
    right: 16px;
}

/* =========================================
   5. LATEST LOGS (White Section)
   ========================================= */
.pelog-latest-section {
    position: relative;
    z-index: 2;
    background: var(--pelog-bg-white);
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.pelog-section-title-center {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 5px;
    color: var(--pelog-text-main);
}

.pelog-section-desc-center {
    display: block;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

/* Tab Menu */
.pelog-tab-menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pelog-tab-btn {
    background: #f4f4f5;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.2s;
    font-size: 14px;
}

.pelog-tab-btn.active {
    background: #000;
    color: #fff;
}

.pelog-tab-btn:hover:not(.active) {
    background: #ddd;
}

/* Feed Grid */
.pelog-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.pelog-post-card {
    display: block;
    transition: transform 0.2s;
    text-decoration: none;
}

.pelog-post-card:hover {
    transform: translateY(-3px);
}

.pelog-post-card.hidden {
    display: none;
}

.pelog-post-card.fade-in {
    animation: pelog-fadeIn 0.5s ease forwards;
}

@keyframes pelog-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pelog-post-thumb-wrap {
    border-radius: var(--pelog-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 15px;
    position: relative;
    background: #eee;
}

.pelog-post-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.pelog-post-card:hover .pelog-post-thumb-wrap img {
    transform: scale(1.05);
}

.pelog-post-title {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0 0 8px;
    color: var(--pelog-text-main);
}

.pelog-post-meta {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    gap: 10px;
    align-items: center;
}

.pelog-cat-label {
    font-weight: 700;
    color: var(--pelog-accent);
}

/* =========================================
   6. FOOTER
   ========================================= */
.pelog-footer {
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.pelog-footer-links-section {
    background: #111;
    color: #fff;
    padding: 80px 0 60px;
}

.pelog-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.pelog-footer-col-brand img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    filter: invert(1);
}

.pelog-footer-brand-desc {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 30px;
}

.pelog-footer-social-links {
    display: flex;
    gap: 12px;
}

.pelog-social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.pelog-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.pelog-social-icon:hover {
    transform: translateY(-3px);
}

.pelog-social-icon.pelog-note:hover {
    background: var(--pelog-note-color);
}

.pelog-social-icon.x:hover {
    background: #000;
    border: 1px solid #333;
}

.pelog-social-icon.youtube:hover {
    background: #ff0000;
}

.pelog-social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.pelog-footer-col h4 {
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: #666;
}

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

.pelog-footer-link-list li {
    margin-bottom: 12px;
}

.pelog-footer-link-list a {
    font-size: 0.9rem;
    color: #ccc;
    transition: 0.2s;
    text-decoration: none;
}

.pelog-footer-link-list a:hover {
    color: #fff;
}

.pelog-footer-copyright {
    background: #fff;
    padding: 30px 0;
    text-align: center;
    color: #888;
    font-size: 0.8rem;
    border-top: 1px solid #eee;
}

.pelog-footer-copyright img {
    height: 24px;
    margin-bottom: 10px;
    opacity: 0.6;
    filter: grayscale(100%);
}

/* =========================================
   7. MOBILE MENU (TOP専用)
   ========================================= */
.pelog-mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.pelog-mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 4px auto;
    transition: 0.3s;
}

.pelog-mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.pelog-mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.pelog-mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.pelog-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 100px 30px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.pelog-mobile-nav.active {
    right: 0;
}

.pelog-mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.pelog-mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.pelog-mobile-nav-list li {
    border-bottom: 1px solid #eee;
}

.pelog-mobile-nav-list a {
    display: block;
    padding: 15px 0;
    font-weight: 700;
    color: var(--pelog-text-main);
    text-decoration: none;
}

.pelog-mobile-nav-title {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 30px 0 15px;
}

/* =========================================
   8. RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .pelog-header-nav .pelog-nav-link:not(.pelog-nav-search) {
        display: none;
    }
    
    .pelog-mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 900px) {
    .pelog-curation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pelog-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .pelog-hero-section {
        height: 600px;
    }
    
    .pelog-gray-section::before {
        top: -40px;
        height: 80px;
    }
    
    .pelog-scroll-indicator {
        bottom: 50px;
    }
    
    .pelog-curation-grid {
        grid-template-columns: 1fr;
    }
    
    .pelog-slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .pelog-hero-main-logo {
        width: 85%;
    }
    
    .pelog-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pelog-footer-col-brand {
        text-align: center;
    }
    
    .pelog-footer-col-brand img {
        margin: 0 auto 20px;
    }
    
    .pelog-footer-social-links {
        justify-content: center;
    }
    
    .pelog-section-header-gray {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .pelog-section-header-dark {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .pelog-section-title-gray,
    .pelog-section-title-dark {
        font-size: 1.5rem;
    }
    
    .pelog-tab-menu {
        gap: 8px;
    }
    
    .pelog-tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}