/* ============================================ */
/* POLITICIAN INFO SECTION - RED COLOR THEME    */
/* Auto-scrolling news ticker - shows all news  */
/* ============================================ */

.politician_info_section {
    background: #ffffff;
    padding: 40px 0;
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.politician_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.politician_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.politician_col_image,
.politician_col_text,
.politician_col_news {
    padding: 0 15px;
    box-sizing: border-box;
}

/* Column widths */
.politician_col_image { width: 33.333%; }
.politician_col_text { width: 33.333%; }
.politician_col_news { width: 33.333%; }

/* ===== COLUMN 1: IMAGE ===== */
.politician_image_wrapper {
    height: 100%;
}

.politician_image {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.politician_image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

/* ===== COLUMN 2: TEXT CONTENT ===== */
.politician_text_wrapper {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.politician_name_tag {
    font-size: 16px;
    font-weight: 600;
    color: #ff9933;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.politician_designation {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 18px 0;
    line-height: 1.35;
    border-left: 4px solid #ff9933;
    padding-left: 14px;
}

.politician_description {
    flex: 1;
}

.politician_description p {
    font-size: 14px;
    line-height: 1.65;
    color: #2c3e50;
    margin: 0 0 22px 0;
    text-align: justify;
}

.politician_readmore {
    margin-top: auto;
}

.politician_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff9933;
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.politician_btn:hover {
    background: #ff9933;
    gap: 14px;
    color: #ffffff;
    text-decoration: none;
}

.politician_btn i {
    font-size: 14px;
}

/* ===== COLUMN 3: AUTO SCROLLING NEWS TICKER ===== */
.politician_news_box {
    background: #fef9f7;
    border: 1px solid #f0dcd8;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.politician_news_header {
    background: #ff9933;
    color: #ffffff;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.politician_news_header i {
    font-size: 18px;
}

/* News Ticker Container - Fixed height showing 3 items */
.news-ticker-wrap {
    height: 270px;
    overflow: hidden;
    position: relative;
}

.news-ticker-track {
    display: flex;
    flex-direction: column;
    animation: scrollNews 20s linear infinite;
}

/* Pause animation on hover */
.politician_news_box:hover .news-ticker-track {
    animation-play-state: paused;
}

/* Scrolling animation */
@keyframes scrollNews {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.politician_news_item {
    display: flex;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #f0dcd8;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.politician_news_item:hover {
    background: #fff5f2;
}

.politician_news_image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f0dcd8;
}

.politician_news_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.politician_news_content {
    flex: 1;
}

.politician_news_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.politician_news_date {
    font-size: 11px;
    color: #8a6e68;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.politician_news_date i {
    font-size: 12px;
    color: #c0392b;
}

.politician_news_type {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.type_news {
    background: #fdecea;
    color: #ff9933;
}

.type_event {
    background: #fef3e8;
    color: #e67e22;
}

.politician_news_title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    line-height: 1.45;
    display: block;
    transition: color 0.2s ease;
}

.politician_news_title:hover {
    color: #ff9933;
    text-decoration: none;
}

.politician_news_footer {
    padding: 12px 18px;
    border-top: 1px solid #f0dcd8;
    text-align: right;
    flex-shrink: 0;
    background: #fef9f7;
}

.politician_view_all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff9933;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.politician_view_all:hover {
    gap: 10px;
    color: #a93226;
    text-decoration: none;
}

.politician_view_all i {
    font-size: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .politician_col_image,
    .politician_col_text,
    .politician_col_news {
        width: 50%;
    }
    
    .politician_col_news {
        width: 100%;
        margin-top: 25px;
    }
    
    .politician_image {
        min-height: 320px;
    }
    
    .politician_image img {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .politician_info_section {
        padding: 30px 0;
    }
    
    .politician_col_image,
    .politician_col_text,
    .politician_col_news {
        width: 100%;
    }
    
    .politician_col_text {
        margin-top: 20px;
    }
    
    .politician_col_news {
        margin-top: 20px;
    }
    
    .politician_designation {
        font-size: 20px;
    }
    
    .politician_image {
        min-height: 280px;
    }
    
    .politician_image img {
        min-height: 280px;
    }
    
    .news-ticker-wrap {
        height: 260px;
    }
}

@media (max-width: 576px) {
    .politician_container {
        padding: 0 15px;
    }
    
    .politician_designation {
        font-size: 18px;
    }
    
    .politician_description p {
        font-size: 13px;
    }
    
    .politician_btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .politician_news_item {
        padding: 12px 15px;
    }
    
    .politician_news_image {
        width: 60px;
        height: 60px;
    }
    
    .news-ticker-wrap {
        height: 240px;
    }
}

/* ===== FIXED CSS - NO SCROLL ISSUES, CONTAINER BASED ===== */
.official_politician_fixed {
    background: #ffffff;
    padding: 40px 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    width: 100%;
    overflow-x: hidden;
}

.official_fixed_container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

.official_left_col,
.official_right_col {
    padding: 0 15px;
    box-sizing: border-box;
}

.official_left_col {
    width: 66.666%;
    float: left;
}

.official_right_col {
    width: 33.333%;
    float: left;
}

/* Clearfix */
.official_fixed_container::after {
    content: "";
    display: table;
    clear: both;
}

/* Title */
.official_title {
    text-align: center;
    margin-bottom: 25px;
}

.official_title h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ff9933;
    margin: 0 0 6px 0;
}

.official_title h2 span {
    color: #1e293b;
    font-weight: 600;
}

.official_line {
    width: 50px;
    height: 2px;
    background: #ff9933;
    margin: 0 auto;
}

/* Two Column Cards */
.official_two_col {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #e2e8f0;
    border-radius: 0;
}

.official_card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
}

.official_two_col .official_card:last-child {
    border-right: none;
}

.official_link {
    text-decoration: none;
    display: block;
}

/* Image */
.official_img {
    position: relative;
    width: 100%;
    background: #f1f5f9;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.official_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: 0.2s;
}

.official_link:hover .official_img img {
    opacity: 0.92;
    transform: scale(1.02);
}

.official_flag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #1e293b;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    z-index: 2;
}

.official_flag_red {
    background: #ff9933;
}

/* Content */
.official_content {
    padding: 16px 18px 20px;
    position: relative;
}

.official_number {
    position: absolute;
    top: -10px;
    left: 18px;
    width: 26px;
    height: 26px;
    background: #ff9933;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.official_content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.official_link:hover .official_content h3 {
    color: #ff9933;
}

.official_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.official_tags span {
    font-size: 10px;
    color: #fff;
    background: #ff9933;
    padding: 2px 8px;
    border-radius: 2px;
}

.official_content p {
    font-size: 12px;
    line-height: 1.5;
    color: #475569;
    margin: 0 0 12px 0;
}

.official_btn {
    font-size: 11px;
    font-weight: 600;
    color: #ff9933;
    display: inline-block;
}

.official_link:hover .official_btn {
    text-decoration: underline;
}

/* Right Column - Quick Facts */
.official_news_box {
    background: #fff;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.official_news_header {
    background: #ff9933;
    color: #fff;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.official_news_header i {
    font-size: 18px;
}

.quick_facts_container {
    flex: 1;
    padding: 8px 0;
}

.quick_fact_item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.quick_fact_item:hover {
    background: #fef2f2;
}

.quick_fact_icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 45px;
    text-align: center;
}

.quick_fact_content {
    flex: 1;
}

.quick_fact_content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.quick_fact_content p {
    font-size: 11px;
    line-height: 1.45;
    color: #64748b;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .official_left_col,
    .official_right_col {
        width: 100%;
        float: none;
    }
    .official_right_col {
        margin-top: 25px;
    }
}

@media (max-width: 700px) {
    .official_politician_fixed {
        padding: 20px 0;
    }
    .official_fixed_container {
        padding: 0 15px;
    }
    .official_title h2 {
        font-size: 20px;
    }
    .official_two_col {
        flex-direction: column;
        border: none;
    }
    .official_card {
        border-right: none;
        border: 1px solid #e2e8f0;
        margin-bottom: 12px;
    }
}

.profile-section {
    padding: 40px 0;
}

.profile-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    background: #fff;
}

.profile-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.4s ease;
}

.profile-card:hover img {
    transform: scale(1.05);
}

.profile-card .card-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.profile-card:hover {
    transform: translateY(-5px);
}


.horizontal-scroll-section {
    padding: 60px 0;
    background: #fffaf5;
    overflow: hidden;
}

.horizontal-scroll-section h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.horizontal-scroll-section h3:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ff6600;
    margin: 15px auto 0;
}

.scroll-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding: 40px 20px;
    cursor: grab;
    scroll-behavior: smooth;
}

.scroll-wrapper:active {
    cursor: grabbing;
}

/* Hide scrollbar for cleaner look (optional) */
.scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.scroll-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    background: #ff6600;
    border-radius: 10px;
}

.scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #e65c00;
}

.scroll-container {
    display: inline-flex;
    gap: 25px;
    padding: 0 20px;
}

.scroll-item {
    display: inline-block;
    width: 320px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    white-space: normal;
    transition: transform 0.3s, box-shadow 0.3s;
}

.scroll-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.scroll-item .image-wrapper {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    overflow: hidden;
}

.scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.scroll-item:hover img {
    transform: scale(1.05);
}

.scroll-item .year {
    background: #ff6600;
    color: white;
    padding: 6px 18px;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    margin: 15px 0 0 15px;
    border-radius: 20px;
}

.scroll-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ff6600;
    margin: 12px 15px 8px;
    line-height: 1.4;
}

.scroll-item p {
    font-size: 13px;
    color: #555;
    margin: 0 15px 18px;
    line-height: 1.5;
}

/* Pause animation on hover */
.scroll-wrapper.auto-scrolling:hover {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .horizontal-scroll-section {
        padding: 40px 0;
    }
    .horizontal-scroll-section h3 {
        font-size: 28px;
    }
    .scroll-item {
        width: 280px;
    }
    .scroll-item .image-wrapper {
        height: 190px;
    }
}

@media (max-width: 480px) {
    .horizontal-scroll-section h3 {
        font-size: 24px;
    }
    .scroll-item {
        width: 260px;
    }
    .scroll-item .image-wrapper {
        height: 170px;
    }
}

/* ============================================ */
/* THOUGHT & LINKS SECTION - POLITICIAN STYLE  */
/* Red Theme - Official Look                   */
/* ============================================ */

.politician_thought_links {
    background: #ffffff;
    padding: 50px 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.thought_links_container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.thought_links_row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* ===== LEFT COLUMN - THOUGHT ===== */
.thought_column {
    flex: 1;
    min-width: 300px;
}

.thought_header {
    text-align: center;
    margin-bottom: 0px;
}

.thought_header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.thought_red_line {
    width: 50px;
    height: 2px;
    background: #ff9933;
    margin: 0 auto;
}

/* Thought Slider */
.thought_slider {
    background: #fef2f2;
    border-left: 4px solid #b91c1c;
    border-radius: 12px;
    padding: 30px 25px;
}

.thought_item {
    text-align: center;
}

.thought_quote {
    position: relative;
}

.quote_icon {
    font-size: 40px;
    color: #b91c1c;
    opacity: 0.5;
    display: block;
    text-align: left;
    font-style: normal;
}

.quote_icon_close {
    font-size: 40px;
    color: #ff9933;
    opacity: 0.5;
    display: block;
    text-align: right;
    font-style: normal;
}

.thought_quote p {
    font-size: 16px;
    line-height: 1.7;
    color: #1e293b;
    margin: 15px 0;
    text-align: center;
    font-style: italic;
}

.thought_author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0dcd8;
}

.thought_author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff9933;
}

.thought_author span {
    font-size: 14px;
    font-weight: 600;
    color: #ff9933;
}

/* ===== RIGHT COLUMN - LINKS ===== */
.links_column {
    flex: 1;
    min-width: 300px;
}

.links_header {
    text-align: center;
    margin-bottom: 0px;
}

.links_header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.links_red_line {
    width: 50px;
    height: 2px;
    background: #ff9933;
    margin: 0 auto;
}

/* Links Grid */
.links_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
}

.link_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.link_item:hover {
    background: #ff9933;
    border-color: #ff9933;
}

.link_item:hover .link_icon,
.link_item:hover .link_text {
    color: #ffffff;
}

.link_icon {
    font-size: 20px;
    color: #b91c1c;
    transition: color 0.2s;
}

.link_text {
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    transition: color 0.2s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .thought_links_row {
        flex-direction: column;
    }
    .links_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .politician_thought_links {
        padding: 35px 0;
    }
    .thought_header h3,
    .links_header h3 {
        font-size: 20px;
    }
    .thought_quote p {
        font-size: 14px;
    }
    .thought_slider {
        padding: 20px 18px;
    }
    .quote_icon,
    .quote_icon_close {
        font-size: 30px;
    }
    .link_item {
        padding: 8px 12px;
    }
    .link_text {
        font-size: 12px;
    }
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social_media_section {
    background: #fff;
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.social_container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.social_header {
    text-align: center;
    margin-bottom: 35px;
}

.social_header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ff9933;
    margin: 0 0 8px 0;
}

.social_header h2 span {
    color: #1e293b;
}

.social_line {
    width: 60px;
    height: 3px;
    background: #ff9933;
    margin: 0 auto 12px;
}

.social_header p {
    font-size: 14px;
    color: #64748b;
}

.social_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.social_col {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

.social_card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.social_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.social_card_header {
    padding: 14px 18px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.social_card_header i {
    font-size: 22px;
}

.fb_header { background: #1877f2; }
.x_header { background: #000; }
.insta_header { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }

/* ===== FIXED SOCIAL CARD BODY - NO EXTRA SPACE ===== */
.social_card_body {
    flex: 1;
    background: #f8fafc;
    min-height: 400px;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

/* ===== FIXED FACEBOOK COLUMN - NO EXTRA SPACE ===== */
.fb_page_embed {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #f0f2f5;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Facebook iframe - full width without spacing */
.fb_page_embed iframe {
    display: block;
    width: 100% !important;
    height: 400px !important;
    border: none;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    left: 0;
    right: 0;
}

/* Force remove any extra spacing from Facebook plugin */
.social_card_body .fb-page,
.social_card_body iframe[src*="facebook.com"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* X Profile Card */
.x_profile_card {
    background: #fff;
    min-height: 400px;
}

.x_card_link {
    text-decoration: none;
    display: block;
}

.x_profile_container {
    border: 1px solid #eef2f6;
    overflow: hidden;
}

.x_profile_banner {
    position: relative;
    height: 100px;
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.x_avatar_wrapper {
    position: absolute;
    bottom: -35px;
    left: 16px;
}

.x_avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.x_profile_info {
    padding: 20px 16px 16px;
}

.x_name_section {
    display: flex;
    align-items: center;
    gap: 4px;
}

.x_name_section h3 {
    font-size: 17px;
    font-weight: 700;
    color: #14171a;
    margin: 0;
}

.x_verified_badge {
    background: #1DA1F2;
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.x_handle {
    font-size: 13px;
    color: #657786;
    margin: 4px 0 12px;
}

.x_bio {
    font-size: 13px;
    color: #14171a;
    margin: 0 0 6px;
}

.x_link {
    font-size: 12px;
    color: #1DA1F2;
    margin: 0 0 14px;
}

.x_stats {
    display: flex;
    gap: 24px;
    padding: 12px 0;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
    margin-bottom: 14px;
}

.x_stat {
    display: flex;
    gap: 6px;
    font-size: 12px;
    color: #657786;
}

.x_stat strong {
    font-weight: 700;
    color: #14171a;
}

.x_sample_post {
    padding: 12px 0;
    border-bottom: 1px solid #eef2f6;
}

.x_post_header {
    margin-bottom: 6px;
}

.x_post_name {
    font-weight: 700;
    font-size: 13px;
    color: #14171a;
}

.x_post_handle {
    font-size: 12px;
    color: #657786;
    margin-left: 4px;
}

.x_post_content {
    font-size: 13px;
    color: #14171a;
    margin: 0 0 10px;
}

.x_post_actions {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #657786;
}

.x_view_profile {
    padding: 12px 0 6px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #1DA1F2;
}

.x_link_footer svg {
    width: 14px;
    height: 14px;
}

.social_card_footer {
    padding: 12px 18px;
    border-top: 1px solid #e2e8f0;
    background: #fff;
    text-align: center;
}

.social_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.social_link:hover {
    gap: 12px;
    text-decoration: underline;
}

.fb_link { color: #1877f2; }
.x_link_footer { color: #000 !important; }
.insta_link { color: #e1306c; }

/* Instagram Embed Fix */
.insta_embed {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.insta_embed iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .social_media_section { padding: 40px 0; }
    .social_header h2 { font-size: 24px; }
    .social_col { min-width: 100%; max-width: 100%; }
}

@media (max-width: 480px) {
    .social_media_section { padding: 30px 0; }
    .social_container { padding: 0 15px; }
    .x_stats { gap: 16px; flex-wrap: wrap; }
    .x_avatar { width: 60px; height: 60px; }
    .x_profile_banner { height: 80px; }
}