@charset "utf-8";
/***********************************************************
ir.css - Investor Relations styling for Nepon TV Holdings
***********************************************************/
.ir_hero_banner {
    position: relative;
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ir_hero_overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.7) 100%);
}
.ir_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
}
.ir_hero_title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}
.ir_hero_subtitle {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 25px;
    line-height: 1.6;
}
.ir_hero_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #d90011;
    color: #ffffff !important;
    padding: 12px 28px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 0, 17, 0.35);
}
.ir_hero_btn:hover {
    background-color: #bb000e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 0, 17, 0.5);
}

/* IR Main Container */
.ir_container {
    width: 1000px;
    margin: 40px auto 60px;
}

.ir_section_title {
    font-size: 26px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 25px;
    position: relative;
    padding-left: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ir_section_title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    background-color: #d90011;
    border-radius: 2px;
}

/* IR News Section */
.ir_news_box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.ir_news_item {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: #334155;
    transition: background 0.2s ease;
}
.ir_news_item:last-child {
    border-bottom: none;
}
.ir_news_item:hover {
    background-color: #f8fafc;
}
.ir_news_meta {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ir_news_date {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}
.ir_news_tag {
    background: #e2e8f0;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}
.ir_news_text {
    flex-grow: 1;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}
.ir_pdf_icon {
    color: #d90011;
    font-size: 18px;
    margin-left: 15px;
}

/* IR Library Grid Cards */
.ir_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.ir_card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px 24px;
    text-decoration: none;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.ir_card:hover {
    border-color: #d90011;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.ir_card_icon {
    width: 54px;
    height: 54px;
    background: #fef2f2;
    color: #d90011;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}
.ir_card:hover .ir_card_icon {
    background: #d90011;
    color: #ffffff;
}
.ir_card_title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #0f172a;
}
.ir_card_desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 15px 0;
}
.ir_card_link {
    font-size: 13px;
    font-weight: 700;
    color: #d90011;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

/* Secondary Links Bar */
.ir_secondary_box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.ir_sec_item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s;
}
.ir_sec_item i {
    font-size: 20px;
    color: #d90011;
}
.ir_sec_item:hover {
    color: #d90011;
}
