/* ==========================================================================
      Component: Navigation Footer
      ========================================================================== */
   
   .nav-footer {
       position: fixed;
       bottom: 0;
       left: 0;
       right: 0;
       z-index: 1000;
       background: var(--theme-color);
       display: flex;
       justify-content: space-between;
       align-items: center;
       height: var(--footer-height);
       max-width: var(--max-content-width);
       margin: 0 auto;
   }
   
     .nav-footer .nav-item {
       flex: 1;
       text-align: center;
       color: #fff;
       font-size: 0.75rem;
       padding: 8px 0;
       transition: outline 0s;
       position: relative;
       outline: 0px solid #fff;
       box-shadow: #333 0px 0px 0px;
       cursor: pointer;
     }
   
     .nav-footer .nav-item.active {
       background: #fff;
       color: var(--theme-color);
       border-radius: 0;
       font-weight: bold;
       transition: outline 0.1s linear;
       outline: 4px solid #fff;
       box-shadow: #333 0px 0px 10px;
     }
   
     .nav-footer .nav-item .nav-icon {
       font-size: 1.375rem;
       font-weight: 700;
       margin-bottom: 4px;
       line-height: 1;
       transition: color 0.3s ease-out;
       color: rgba(255, 255, 255, 0.5);
       pointer-events: none;
     }
   
     .nav-footer .nav-item.active .nav-icon {
       color: var(--theme-color);
       -webkit-text-stroke: 0px transparent;
     }
   
     .nav-footer .nav-item .nav-icon#tomorrowDay {
       color: var(--theme-color);
       -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
       paint-order: stroke;
     }
   
     .nav-footer .nav-item .nav-divider {
       width: 40%;
       height: 1px;
       background: rgba(255,255,255,0.3);
       margin: 4px auto;
       transition: width 0.3s ease-out;
     }
   
     .nav-footer .nav-item.active .nav-divider {
       width: 90%;
       background: var(--theme-color);
     }
   
     .nav-footer .nav-item .nav-label {
       font-size: 0.625rem;
       letter-spacing: 0.15em;
       transition: letter-spacing 0.3s ease-out, color 0.3s ease-out;
       color: rgba(255, 255, 255, 0.5);
       pointer-events: none;
     }
   
     .nav-footer .nav-item.active .nav-label {
       letter-spacing: 0.4em;
       color: var(--theme-color);
     }
   
     .nav-footer .nav-item.tonight {
         background: #001a33 !important;
         outline: 0px solid #022443 !important;
     }
   
     .nav-footer .nav-item.tonight.active {
         color: #ffe066 !important;
         background: #022443 !important;
         outline: 4px solid #022443 !important;
     }
   
     .nav-footer .nav-item.tonight.active .nav-divider {
         background: #ffe066;
     }
   
     .nav-footer .nav-item.tonight.active .nav-icon,
     .nav-footer .nav-item.tonight.active .nav-label {
         color: #ffe066 !important;
     }
   
   /* ==========================================================================
      Component: Scroll Indicator
      ========================================================================== */
   
   .scroll-indicator {
       position: relative;
       bottom: 60px;
       left: 50%;
       padding: 0 80px 50px 80px;
       transform: translateX(-50%);
       color: white;
       font-size: 0.8rem;
       font-weight: bold;
       opacity: 0.9;
       display: flex;
       flex-direction: column;
       align-items: center;
       text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
       z-index: 100;
       cursor: pointer;
       -webkit-touch-callout: none;
       outline: none;
       background: transparent;
   }
   
   .scroll-arrow {
       width: 22.5px;
       height: 22.5px;
       border-right: 2.25px solid white;
       border-bottom: 2.25px solid white;
       transform: rotate(45deg);
       margin-top: 8px;
       box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
       position: relative;
       animation: bounce 5s infinite;
       pointer-events: none;
   }
   
   .to-top .scroll-indicator {
       padding: 10px 80px;
       bottom: 0;
   }
   
   .to-top .scroll-indicator .scroll-arrow {
       transform: rotate(-135deg);
       animation: bounce-rev 5s infinite;
   }
   
   .mini-arrow {
     width: 12px;
     height: 12px;
     border-right: 1.5px solid white;
     border-bottom: 1.5px solid white;
     transform: rotate(45deg);
     margin: 10px auto 0 auto;
     box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
     position: relative;
     pointer-events: none;
     background: transparent;
   }
   
   /* ==========================================================================
      Component: Vimeo Player Integration
      ========================================================================== */
   
   .video-container {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       overflow: hidden;
       z-index: 1;
       background: #000;
   }
   
   .video-container iframe {
       position: absolute;
       top: 0;
       left: 0;
       width: 100% !important;
       height: 100% !important;
       object-position: center;
       min-width: 100%;
       max-width: 100%;
       border: 0;
   }
   
   .video-play-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(0,0,0,0.5);
     z-index: 20;
     cursor: pointer;
     pointer-events: auto;
     transition: opacity 0.3s ease;
   }
   
   .video-play-overlay.hidden {
     display: none;
   }
   
   .video-play-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     background: transparent;
     border: none;
     font-size: 6rem;
     color: var(--theme-color);
     text-shadow: #333 0px 0px 4px;
     pointer-events: auto;
     padding: 0;
     cursor: pointer;
   }
   
   /* ==========================================================================
      Component: Detail Overlay (Modal)
      ========================================================================== */
   
   .detail-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     max-width: var(--max-content-width);
     height: 100%;
     background: #000;
     overflow-y: auto;
     z-index: 1000;
     animation: fadeIn 0.3s ease-out;
     transform-origin: center center;
   }
   
   .detail-overlay.video-overlay-content .panel-title {
    border-left: none;
    padding-left: 0;
    padding-bottom: 15px;
    font-size: 1.35rem;
    border-bottom: 1px solid var(--theme-color);
   }
   
   .detail-overlay.fade-out {
     animation: fadeOut 0.3s ease-out forwards;
   }
   
   .close-btn {
       position: fixed;
       bottom: 20px;
       margin-left: 20px;
       width: 44px;
       height: 44px;
       background: rgba(255, 255, 255, 0.95);
       border: 1px solid #fff;
       border-radius: 50%;
       color: #333;
       font-size: 1.5rem;
       cursor: pointer;
       z-index: 2000;
       display: flex;
       align-items: center;
       justify-content: center;
       box-shadow: 0 2px 8px rgba(0,0,0,0.3);
       padding: 0;
   }
   
   .close-btn .material-symbols-outlined {
       font-size: 1.75rem;
       font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
   }
   
   .detail-overlay .loading-spinner {
     position: fixed;
     /* Inherits size, border, animation from .loading-spinner */
     /* Adjust margin if necessary based on fixed positioning */
     z-index: 2000;
   }
   
   /* ==========================================================================
      Component: Loading Spinner
      ========================================================================== */
   
   .loading-spinner {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 48px;
     height: 48px;
     margin: -24px 0 0 -24px;
     border: 5px solid rgba(255,255,255,0.3);
     border-top: 5px solid var(--theme-color);
     border-radius: 50%;
     animation: loading-spin 1s linear infinite;
     z-index: 10;
     pointer-events: none;
   }
   
   /* ==========================================================================
      Component: Switch Toggle
      ========================================================================== */
   
   .switch {
     position: relative;
     display: flex;
     align-items: center;
     width: auto;
     height: 28px;
     margin: 10px 0;
     cursor: pointer;
   }
   
   .switch input {
     opacity: 0;
     width: 0;
     height: 0;
     position: absolute;
   }
   
   .switch .slider {
     position: relative;
     display: inline-block;
     width: 48px;
     height: 28px;
     margin-right: 12px;
     background-color: #ccc;
     transition: background-color .4s;
     border-radius: 28px;
   }
   
   .switch .slider:before {
     position: absolute;
     content: "";
     height: 22px;
     width: 22px;
     left: 3px;
     bottom: 3px;
     background-color: white;
     transition: transform .4s, background-color .4s;
     border-radius: 50%;
     box-shadow: 0 1px 3px rgba(0,0,0,0.3);
   }
   
   .switch input:checked + .slider {
     background: var(--theme-color);
   }
   
   .switch input:focus + .slider {
     box-shadow: 0 0 1px var(--theme-color);
   }
   
   .switch input:checked + .slider:before {
     transform: translateX(20px);
   }
   
   .switch .switch-label {
     flex: none;
     min-width: 0;
     margin-left: 0;
     white-space: normal;
     color: #fff;
     line-height: 1.4;
   }
   
   /* ==========================================================================
      Component: Navigation Guide
      ========================================================================== */
   
   .nav-guide {
       display: flex;
       justify-content: space-between;
       padding-bottom: 30px;
   }
   
   .guide-column {
       flex: 1;
       text-align: center;
       padding: 0 10px;
       border-right: 1px solid rgba(255, 255, 255, 0.3);
       position: relative;
   }
   
   .guide-column:last-child {
       border-right: none;
   }  
   
   .guide-title {
       color: var(--theme-color);
       font-weight: 700;
       margin-bottom: 8px;
       font-size: 0.85rem;
       letter-spacing: 0.1em;
   }
   
   .guide-desc {
       color: rgba(255, 255, 255, 0.8);
       font-size: 0.75rem;
       line-height: 1.4;
       user-select: text;
       -webkit-user-select: text;
       -moz-user-select: text;
       -ms-user-select: text;
   }
   
   /* ==========================================================================
      Component: Recommend Tags
      ========================================================================== */
   
   .recommend-tags {
     display: flex;
     gap: 4px;
     margin-bottom: 6px;
     padding: 0;
     flex-wrap: wrap;
     max-width: 90%;
   }
   
   .recommend-tag {
     display: flex;
     align-items: center;
     font-size: 0.8em;
     font-weight: 500;
     border-radius: 6px;
     padding: 2px 8px 2px 4px;
     color: #fff;
     margin: 0 2px 5px 0;
     line-height: 1.2;
     background: #888;
     box-shadow: 0 1px 4px rgba(0,0,0,0.18);
     white-space: nowrap;
   }
   
   .recommend-tag .material-symbols-outlined {
     font-size: 1.1em;
     margin-right: 2px;
   }
   
   .tag-location    { background: #1976d2; }
   .tag-crowd       { background: #388e3c; }
   .tag-live        { background: #7b1fa2; }
   .tag-trending    { background: #d32f2f; }
   .tag-weather     { background: #fbc02d; color: #333; }
   .tag-today_only  { background: #e64a19; }
   .tag-ad          { background: #616161; }
   .tag-sponsored   { background: #00838f; }
   .tag-campaign    { background: #c2185b; }
   .tag-curator     { background: #fbc02d; color: #333; }
   .tag-hidden_gem  { background: #9c27b0; }
   .tag-new         { background: #2196f3; }
   .tag-must_see    { background: #ff9800; }
   
   /* ==========================================================================
      Component: Credit Logo
      ========================================================================== */
   

   .logo {
    font-weight: 700;
   }
   
   .logo .area {
       font-weight: 300;
       margin-left: 0.1em;
       opacity: 0.8;
   }

   .credit .logo {
      font-size: 1.75rem;
      margin-bottom: 15px;
      color: var(--theme-color);
  }

/* ==========================================================================
   Component: Current Location Marker
   ========================================================================== */

   .current-location-marker {
       position: relative;
       width: 20px;
       height: 20px;
   }
   
   .current-location-pulse {
       position: absolute;
       width: 20px;
       height: 20px;
       background: #f4425a;
       border-radius: 50%;
       animation: pulse 2s infinite;
   }
   
   .current-location-pulse::before {
       content: '';
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       width: 8px;
       height: 8px;
       background: white;
       border-radius: 50%;
       z-index: 1;
   }
   
   .location-permission-message {
       margin: 15px 0;
       padding: 10px;
       background: #ffe0e0;
       color: #a00;
       border-radius: 6px;
       font-size: 0.95em;
       text-align: center;
   }
   
   .centered-content {
     min-height: 100vh;
     display: flex !important;
     flex-direction: column;
     justify-content: center;
   }
   
   /* =============================
      Component: Video Head (動画記事用ヘッダー)
      ============================= */
   .video-head {
       height: 20vh;
       min-height: 120px;
       max-height: 200px;
       display: flex;
       flex-direction: column;
       justify-content: flex-end;
       background: linear-gradient(transparent, rgba(0,0,0,0.7));
       margin-bottom: 2vh;
       position: relative;
   }
   
   .video-head .panel-content {
       position: relative;
       padding: 16px 20px 8px 20px;
       background: none;
       color: #fff;
       z-index: 2;
   }
   
   /* =============================
      右上フロートコントロール
      ============================= */
   #floating-controls {
     position: fixed;
     top: 10px;
     right: 10px;
     z-index: 500;
     display: flex;
     gap: 8px;
     pointer-events: auto;
   }
   
   #floating-controls .floating-btn {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: rgba(30, 30, 30, 0.3);
     border: none;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 1.625rem;
     cursor: pointer;
     transition: background 0.2s, color 0.2s, box-shadow 0.2s;
   }

   #floating-controls .floating-btn .material-symbols-outlined {
       font-size: 1.75rem;
  }
   
   #floating-controls.hidden {
     display: none !important;
   }
   
   /* 履歴オーバーレイのスタイル */
   .history-overlay-container {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.5);
       backdrop-filter: blur(4px);
       -webkit-backdrop-filter: blur(4px);
       z-index: 1000;
       display: flex;
       align-items: center;
       justify-content: center;
       animation: fadeInBackground 0.3s ease-out;
   }

   .history-overlay {
       width: 100%;
       max-width: 600px;
       max-height: 85vh;
       margin: 20px;
       background: rgba(0, 0, 0, 0.8);
       border-radius: 12px;
       border: 1px solid rgba(255, 255, 255, 0.1);
       box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
       overflow: hidden;
       display: flex;
       flex-direction: column;
       animation: slideIn 0.3s ease-out;
   }

   .history-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 15px 20px;
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   }

   .history-header h2 {
       margin: 0;
       font-size: 1.5em;
       color: #fff;
   }

   .history-header-buttons {
       display: flex;
       gap: 8px;
       align-items: center;
   }

   .close-help-btn, 
   .clear-history-btn,
   .close-history-btn {
       background: none;
       border: none;
       color: #fff;
       cursor: pointer;
       padding: 5px;
       display: flex;
       align-items: center;
       gap: 5px;
       -webkit-tap-highlight-color: transparent;
   }

   .close-help-btn:active,
   .clear-history-btn:active,
   .close-history-btn:active {
       color: var(--theme-color);
   }

   .history-list {
       flex: 1;
       overflow-y: auto;
       padding: 5px;
   }

   .history-item {
       display: flex;
       align-items: center;
       padding: 10px;
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
       cursor: pointer;
   }

   .history-item:last-child {
       border-bottom: none;
   }

   .history-item-content {
       display: flex;
       align-items: center;
       flex: 1;
       gap: 12px;
   }

   .history-icon {
       font-size: 1.4em;
       color: var(--theme-color);
       flex-shrink: 0;
   }

   .history-item-content h3 {
       flex: 1;
       color: #fff;
       font-size: 1em;
       margin: 0;
   }

   .history-timestamp {
       font-size: 0.8em;
       color: rgba(255, 255, 255, 0.6);
       flex-shrink: 0;
       margin-left: auto;
   }

   .history-list .empty-history-message,
   .history-list .cookie-notice-message {
       color: rgba(255, 255, 255, 0.6);
       text-align: center;
       padding: 10px;
   }

   .delete-button {
       display: none;
   }

   .history-overlay-container.fade-out {
       animation: fadeOutBackground 0.3s ease-out forwards;
   }

   .history-overlay-container.fade-out .history-overlay {
       animation: slideOut 0.3s ease-out forwards;
   }

   .help-overlay-container {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.5);
       backdrop-filter: blur(4px);
       -webkit-backdrop-filter: blur(4px);
       z-index: 1000;
       display: flex;
       align-items: center;
       justify-content: center;
       animation: fadeInBackground 0.3s ease-out;
   }

   .help-overlay {
       width: 100%;
       height: 85vh;
       max-width: 600px;
       margin: 20px;
       background: rgba(0, 0, 0, 0.8);
       border-radius: 12px;
       border: 1px solid rgba(255, 255, 255, 0.1);
       box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
       overflow: hidden;
       display: flex;
       flex-direction: column;
       animation: slideIn 0.3s ease-out;
   }

   .help-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 15px 20px;
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   }

   .help-header .logo {
       margin: 0;
       font-size: 1.3rem;
       color: var(--theme-color);
   }

   .help-header .logo .area {
       font-weight: 300;
       margin-left: 0.1em;
       opacity: 0.8;
   }

   .help-content {
       flex: 1;
       overflow-y: auto;
       padding: 20px;
       -webkit-overflow-scrolling: touch;
   }

   .help-section p {
       margin-bottom: 16px;
   }

   .help-section ul {
       list-style-type: none;
       padding-left: 0;
       margin: 16px 0;
   }

   .help-section li {
       margin-bottom: 12px;
       padding-left: 24px;
       position: relative;
       color: #fff;
   }

   .help-section li::before {
       content: "•";
       color: var(--theme-color);
       position: absolute;
       left: 8px;
   }

   .help-section h3 {
       color: var(--theme-color);
       font-size: 1.2em;
       margin: 1rem 0 0.5rem 0;
   }

   .help-section p {
       color: #fff;
       line-height: 1.6;
       user-select: text;
       -webkit-user-select: text;
       -moz-user-select: text;
       -ms-user-select: text;
       margin: 0.5rem 0;
   }

   .help-section .help-image {
       width: 100%;
       height: auto;
       border-radius: 6px;
       margin: 16px 0;
       display: block;
   }

   .help-section.copyright {
       font-size: 0.625rem;
       color: rgba(255, 255, 255, 0.5);
       line-height: 1.4;
       user-select: text;
       -webkit-user-select: text;
       -moz-user-select: text;
       -ms-user-select: text;
   }

   .help-section.copyright a {
       color: rgba(255, 255, 255, 0.7);
       text-decoration: none;
       -webkit-tap-highlight-color: transparent;
   }

   .help-overlay-container.fade-out {
       animation: fadeOutBackground 0.3s ease-out forwards;
   }

   .help-overlay-container.fade-out .help-overlay {
       animation: slideOut 0.3s ease-out forwards;
   }

   .history-type-icon {
     font-size: 1.4em;
     color: var(--theme-color, #00bcd4);
     margin-right: 10px;
     vertical-align: middle;
     flex-shrink: 0;
   }

   .pseudo-btn {
     color: var(--theme-color);
     text-decoration: none;
     padding: 5px 10px;
     border: 1px solid var(--theme-color);
     border-radius: 6px;
     font-size: 0.9em;
     background: none;
     margin-left: 10px;
     display: inline-block;
   }

    #splash-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 1;
        transition: opacity 0.5s ease-out;
    }
    
    #splash-screen.fade-out {
        opacity: 0;
        pointer-events: none;
    }
    
    #splash-screen .loading-spinner {
        width: 64px;
        height: 64px;
        margin: -32px 0 0 -32px;
        animation: loading-spin 1s linear infinite;
    }

.history-title {
    flex: 1;
    color: #fff;
}

.detail-overlay .panel-table {
  width: 100%;
  border: 1px solid #333;
}

.detail-overlay .panel-table th,
.detail-overlay .panel-table td {
  padding: 12px 16px;
}

.detail-overlay .panel-table th {
  position: relative;
}

.detail-overlay .panel-table .table-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-overlay .panel-table .table-label .label-text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.detail-overlay .panel-table .table-label .bg-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #666;
  opacity: 0.1;
  z-index: 1;
}

.detail-overlay .panel-table tr:last-child th,
.detail-overlay .panel-table tr:last-child td {
  border-bottom: none;
}

.detail-overlay .panel-table td {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

.detail-overlay .panel-table a {
  color: var(--theme-color);
  text-decoration: none;
  display: inline-block;
}

.detail-overlay .sponsor-info {
  margin-top: 20px;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.detail-overlay .sponsor-info a {
  color: var(--theme-color);
  text-decoration: none;
  display: inline-block;
}

.detail-overlay .additional-image {
  position: relative;
  border-radius: 6px;
  margin-bottom: 2em;
  z-index: 1;
}

/* 動画説明文をパネル下に常に表示できるようにする */
.panel.landscape,
.panel.portrait,
.panel.square {
  display: flex;
  flex-direction: column;
  height: auto;
  padding-top: 0;
  position: relative;
  overflow: visible;
}

/* 動画フレーム部分だけアスペクト比を維持 */
.panel.landscape .panel-link {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}

.panel.portrait .panel-link {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  display: block;
}

.panel.square .panel-link {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
}

/* 追加説明パネル */
.panel.flex.additional-desc {
  margin-top: -4px;
}
.panel.flex.additional-desc .panel-content {
    padding: 5px 10px;
    background: #111;
    color: #aaa;
}
.panel.flex.additional-desc .panel-content p {
  margin: 0;
  font-size: 0.75rem;
}
.panel.flex.additional-desc .panel-content p a {
    font-weight: 600;
    color: #eee;
}

.not-found .material-symbols-outlined {
  color: var(--theme-color);
}

.selectable-text {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.news-panel .panel-content {
  position: relative;
}

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

.news-list li {
  margin-bottom: 0.5rem;
}

.news-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.news-time {
  font-size: 0.9rem;
  color: #666;
  margin-right: 1rem;
  min-width: 4rem;
}

.news-title {
  flex: 1;
}

.news-timestamp {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
  margin-top: 8px;
}

.news-panel {
  background: #111;
  padding: 20px;
  margin: 0;
  border-bottom: 4px solid #000;
}

.news-panel .panel-content {
  padding: 0;
  background: none;
}

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

.news-list li {
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.news-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.news-list a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s ease;
}

.news-time {
  font-size: 0.9rem;
  color: var(--theme-color);
  margin-right: 1rem;
  min-width: 4rem;
  padding-top: 2px;
}

.news-title {
  flex: 1;
  line-height: 1.4;
}