:root {
    --accent: 217.2 91.2% 59.8%;
}
.cms-page-container
{
    width:100%;
    text-align:center;
    display:flex;
    justify-content:center;
    align-items:center;
}
.ls-container
{
    justify-content: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}
.ls-container-vertical
{
    flex-direction: column;
}
.ls-container-horizontal
{
    flex-direction: row;
}
.ls-container-leaf
{
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    display: flex;
    align-items: center;
}
.component-block
{
    margin-top: 5px;
    margin-bottom: 20px;
    width: 100%;
}

.html-editor-block .preview-container
{
    width: 100%;
    text-align: left;
}

.article-selector-container {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
}

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

.article-title {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.article-cover {
    margin-bottom: 20px;
    text-align: center;
}

.cover-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-blocks {
    margin-top: 20px;
}
.block-unknown {
    padding: 15px;
    border: 1px solid #fbbf24;
    border-radius: 6px;
    background: #fffbeb;
    font-size: 12px;
    color: #92400e;
    overflow-x: auto;
}

.html-block-fallback {
    padding: 15px;
    border: 1px solid #f87171;
    border-radius: 6px;
    background: #fef2f2;
    color: #991b1b;
}

.carousel-panel-container
{
    width: 100%;
    justify-content: center;
    align-items: center;
}

.carousel {
  position: relative;
  width: 600px;
  max-width: 100%;
  min-height: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  background: #000;
}

.carousel[data-slider-height] .slides {
  height: var(--slider-height, 400px);
}

.carousel[data-slider-height] .slide {
  height: var(--slider-height, 400px);
}

.carousel[data-slider-width] {
    width: var(--slider-width, 400px);
}

.empty-preview {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  color: #888;
  font-size: 1.2em;
  border-radius: 12px;
  border: 2px dashed #ccc;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
}

.slide-with-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero block overlay and content */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 20px;
}

.hero-title {
  margin: 0 0 16px 0;
  text-align: center;
}

.hero-sub {
  margin: 0 0 24px 0;
  text-align: center;
}

.hero-btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.6);
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  z-index: 20;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.9);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 20;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

.right-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.library-btn {
  padding: 8px 16px;
  border-radius: 6px;
  background: #2563eb;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.thumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.video-thumb, .html-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* YouTube Player Styles */
.youtube-player-hero {
    cursor: pointer;
}

.youtube-player-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.youtube-player-hero .youtube-player-iframe {
    position: absolute;
    inset: 0;
    object-fit: cover;
    pointer-events: none;
}

.video-preview-wrapper {
    display: none;
}

.video-preview-wrapper.hero-mode {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-preview-wrapper.standard-mode {
    display: inline-block;
}

.video-preview {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-preview.standard-mode {
    display: inline-block;
    max-width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.video-preview-title {
    color: #fff;
    font-weight: 700;
    padding: 8px 12px;
    text-align: center;
    max-width: 90%;
    margin-bottom: 8px;
}

.video-preview-play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-player-block
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-block-container
{
  padding: 24px;
  background: white;
  border-radius: 8px;
}

.teaser-card-body {
  color: inherit;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Text Block Styles */
.text-block {
    width: 100%;
    box-sizing: border-box;
}

.text-paragraph {
    line-height: 1.6;
    margin-bottom: 1em;
}

.text-paragraph:last-child {
    margin-bottom: 0;
}

/* Text Alignment */
.text-align-left {
    text-align: left;
}

.text-align-center {
    text-align: center;
}

.text-align-right {
    text-align: right;
}

/* Font Sizes */
.text-size-small {
    font-size: 0.875rem;
}

.text-size-medium {
    font-size: 1rem;
}

.text-size-large {
    font-size: 1.25rem;
}

/* Margins */
.text-margins-narrow {
    margin: 10px;
}

.text-margins-normal {
    margin: 46px;
}

.text-margins-wide {
    margin: 72px;
}

/* Icons List Component */
.icons-list-section {
    padding: 4rem 0;
}

.icons-list-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.icons-list-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.icon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
}

@media (min-width: 640px) {
    .icon-grid {
        max-width: 48rem;
        margin: 0 auto;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .icon-grid {
        max-width: none;
        margin: 0;
        grid-template-columns: repeat(auto-fit, minmax(max(200px, 100%/4), 1fr));
    }
}

.icon-grid-item {
    text-align: center;
}

.icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background-color: hsl(var(--accent) / 0.1);
}

.icon-circle svg {
    width: 32px;
    height: 32px;
}

.icon-image-container
{
    width: 6rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-image {
    width: 100%;
    height: 100%;
}


.icon-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.icon-item-description {
    color: #6b7280;
}



/* Data Table Styles */
.data-table-container {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
}

.data-table-header-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
}

.data-table-wrapper {
    overflow-x: auto;
    max-height: 600px;
    overflow-y: auto;
    border-radius: 8px;
    border: 1px solid #d1d5db;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table th,
.data-table td {
    border: 1px solid #d1d5db;
    padding: 12px 16px;
    text-align: left;
}

.data-table-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #f3f4f6;
}

.data-table-header th {
    font-weight: 600;
}

.table-cell-image {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.table-cell-link {
    color: #2563eb;
    text-decoration: underline;
}

.table-cell-link:hover {
    color: #1d4ed8;
}

.table-cell-boolean {
    font-size: 1.2em;
    font-weight: bold;
}

.collapsable-contents-section
{
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background-color: #ffffff;
}

.collapsable-contents-container
{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: left;
}

.collapsable-contents-header
{
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
    cursor: pointer;
    text-align: left;
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.collapsable-sections-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.collapsable-section-details
{
    box-sizing: border-box;
    width: 100%;
    border-top: 1px solid #e5e7eb;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.2s;
}

.collapsable-section-details[open] .collapsable-section-icon {
    transform: rotate(180deg);
}


.collapsable-section-details:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}


.collapsable-section-summary
{
    font-weight: 600;
    display: flex;
    flex-direction: row;

    width: 100%;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    transition: background-color 0.2s;
    list-style: none;



}


.collapsable-section-summary::-webkit-details-marker {
    display: none;
}

.collapsable-section-summary:hover {
    background-color: #f8fafc;
}


.collapsable-section-title
{
    flex: 1;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: #334155;
}

.collapsable-section-icon
{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;


    margin-left: 1rem;
    transform: rotate(0deg);
    transition: transform 0.2s;
    flex-shrink: 0;
    color: #64748b;

}

.collapsable-section-content
{   
    width: 100%;
    display: flex;
    flex-direction: column; 
    background: #ffffff;     
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.collapsable-section-child
{
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
    color: #475569;
    line-height: 1.625;

}

.collapsable-section-child:first-child {
    padding-top: 0;
}


.collapsable-section-child h1
{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;    
}

.collapsable-section-child h2
{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;    
}

.collapsable-section-child h3
{
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;    
}

.collapsable-section-child h4
{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;    
}

.collapsable-section-child h5
{
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;    
}

.collapsable-section-child strong
{
    font-weight: 600;
}

.collapsable-section-child p
{
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.collapsable-section-child p:last-child {
    margin-bottom: 0;
}


.collapsable-section-child ul
{
    margin-left: 1.5rem;
    margin-bottom: 0.75rem;
    list-style-type: disc;
    line-height: 1.6;
}

.collapsable-section-child ol
{
    margin-left: 1.5rem;
    margin-bottom: 0.75rem;
    list-style-type: decimal;
    line-height: 1.6;
}

.collapsable-section-child li
{
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.collapsable-section-child a
{
    color: #2563eb;
    text-decoration: underline;
}

.collapsable-section-child a:hover
{
    color: #1d4ed8;
}


.collapsable-section-child .video-preview {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.collapsable-section-child .youtube-player-iframe {
    max-width: 100%;
    height: auto;
}


.collapsable-section-child img {
    max-width: 300px;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.collapsable-section-image {
    width: 300px;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.page-content{
    display: flex;
}

@media (min-width: 1024px) {
    .lg\:pt-\[102px\]
    {
        padding-top: 100px !important;
    }
}


@media (min-width: 768px) {
    .md\:pt-\[131px\] {
        padding-top: 100px !important;
    }
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}
.article-item {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
}
/* Logo Gallery Component Styles */
.logo-galley-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.logo-galley-toolbar {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}
.logo-galley-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
}
.logo-display-section {
    width: 100%;
}
.logo-list-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    position: relative;
}
.logo-list-container.single-row-mode {
    max-width: 100%;
}
.logo-list {
    flex: 1;
}
.single-row-mode .logo-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 8px 0;
    justify-content: flex-start;
    display: flex;
}
.single-row-mode .logo-list::-webkit-scrollbar {
    height: 8px;
}
.single-row-mode .logo-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.single-row-mode .logo-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
.single-row-mode .logo-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.multi-row-mode .logo-list {
    display: grid;
    gap: 16px;
    justify-content: center;
}

.logo-image {
    width: 100%; 
    height: auto; 
    object-fit: contain; 
    aspect-ratio: 4 / 3; 
    transition: transform 0.3s ease;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.scroll-arrow:hover {
    background: #1e40af;
    transform: scale(1.1);
}
.scroll-arrow:active {
    transform: scale(0.95);
}
.scroll-arrow.left {
    margin-right: 8px;
}
.scroll-arrow.right {
    margin-left: 8px;
}
.logo-figure {
    width: 120px;
    max-width: 150px;
    margin-right: 5px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border: 2px solid #e5e7eb;
    transition: border-color .2s, transform .2s;
    margin-bottom: 8px;
    cursor: grab;
    flex-shrink: 0;
}
.single-row-mode .logo-figure {
    width: 150px;
    min-width: 150px;
}
.logo-figure:active {
    cursor: grabbing;
}
.logo-figure.upload-failed {
    border-color: #d32f2f;
}
.logo-figure.drag-over {
    border-color: #2563eb;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.progress-bar {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    height: 6px;
    background: #e0e7ef;
    border-radius: 4px;
    overflow: hidden;
}
.progress {
    height: 100%;
    background: linear-gradient(90deg,#60a5fa,#06b6d4);
    width: 0%;
    transition: width .2s;
}
.upload-error {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    background: #fff3f3;
    color: #d32f2f;
    border-radius: 4px;
    padding: 4px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.controls-section {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.trash-bin-panel {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.trash-bin {
    margin-top: 0;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 2px solid #d32f2f;
}
.trash-bin svg {
    display: block;
}
.display-options {
    margin-top: 0;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    min-width: 200px;
    max-width: 280px;
}
.display-option-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    color: #374151;
}
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}
.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
    cursor: pointer;
}
.radio-label input[type="radio"] {
    cursor: pointer;
}
.images-per-row-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}
.images-per-row-selector label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}
.images-per-row-selector select {
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}
.images-per-row-selector select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.action-button {
    padding: 8px 16px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.action-button:hover {
    background: #1e40af;
}

/* Articles List Styles */
.articles-list-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 20px;
}

.articles-list-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 32px;
    color: #1a202c;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(max(300px, 100%/4), 1fr));
    gap: 24px;
    justify-items: center;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 350px;
    width: 100%;
    max-width: 100%;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.article-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
}

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

.article-card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 12px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.author-avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4299e1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-name {
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 500;
}

.no-articles {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 1.125rem;
}

/* Author Header Styles */
.author-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.author-header-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-header-image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #4299e1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 3rem;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-header-info {
    flex: 1;
}

.author-header-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px 0;
}

.author-header-meta {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 4200px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .articles-list-title {
        font-size: 2rem;
    }
    
    .author-header {
        padding: 24px;
        gap: 16px;
    }
    
    .author-header-image,
    .author-header-image-placeholder {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .author-header-name {
        font-size: 1.875rem;
    }
    
    .author-header-meta {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .articles-list-container {
        padding: 24px 16px;
    }
    
    .articles-list-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }
    
    .article-card-image {
        height: 180px;
    }
    
    .author-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .author-header-image,
    .author-header-image-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .author-header-name {
        font-size: 1.5rem;
    }
}

/* Articles Page Styles */
.articles-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.view-more-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-more-link:hover {
    color: #1d4ed8;
}

.featured-articles-section,
.top-authors-section,
.all-articles-section {
    margin-bottom: 48px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.featured-card {
    background: #fff;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: block;
}

.featured-card:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.featured-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f1f5f9;
}

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

.featured-card-content {
    padding: 20px;
}

.featured-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.featured-card-date {
    font-size: 13px;
    color: #64748b;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.author-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.author-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    object-fit: cover;
    border: 3px solid #e2e8f0;
}

.author-avatar-placeholder-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    border: 3px solid #e2e8f0;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.author-articles-count {
    font-size: 14px;
    color: #64748b;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
}

.article-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .featured-grid,
    .authors-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 22px;
    }

    /* Articles Page Styles for Mobiles */
    .articles-page-container {
        width: 100% !important;
    }
}

/* Articles List Block Component Styles */
.articles-list-block {
    width: 100%;
    padding: 20px 0;
    justify-content: center;
    justify-items: center;
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}

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

.article-image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #64748b;
    font-size: 14px;
}

.article-content {
    padding: 20px;
}

.article-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.article-title a {
    color: #1e293b;
    text-decoration: none;
}

.article-title a:hover {
    color: #2563eb;
}

.article-caption {
    margin: 0 0 16px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

.article-meta {
    margin-bottom: 12px;
    font-size: 13px;
    color: #94a3b8;
}

.article-date {
    display: inline-block;
}

.read-more {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.read-more:hover {
    color: #1d4ed8;
}

.articles-empty-state {
    padding: 60px 20px;
    text-align: center;
    color: #64748b;
    font-size: 16px;
}
