@charset "UTF-8";

/*--------------------------------------------------------------
	Column Content Styles (Limited to #column-main)
-------------------------------------------------------------- */

#column-main {
    flex: 1;
    min-width: 0;
}

/* Page Title & Intro Area */
#column-main .column-header {
    margin-bottom: 2.5rem;
}

#column-main .page-title-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

#column-main .intro-text {
    font-size: 1.1rem;
    color: #555;
    border-left: 3px solid #ff8c00;
    padding-left: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Article Area */
#column-main .article-content {
    background: #fff;
}

#column-main .entry-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff4500;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

#column-main .marker-orange {
    display: inline-block;
    width: 10px;
    height: 1.25em;
    background-color: #ff8c00;
    margin-right: 0.75rem;
    border-radius: 2px;
}

#column-main .main-visual {
    margin: 0 0 2.5rem;
}

#column-main .main-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Typography Inside Content */
#column-main .article-body {
    line-height: 1.9;
    font-size: 1.05rem;
    color: #333;
}

#column-main .article-body p {
    margin-bottom: 1.8rem;
}

#column-main .article-body h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff4500;
    margin: 3rem 0 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

#column-main .article-body h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ff8c00;
}

/* Images Inside Content */
#column-main .article-body .float-right {
    float: right;
    width: 40%;
    margin: 0 0 1.5rem 2rem;
    border-radius: 8px;
}

/* Responsive adjustment for internal elements */
@media screen and (max-width: 959px) {
    #column-main .entry-title {
        font-size: 1.4rem;
    }

    #column-main .article-body .float-right {
        float: none;
        width: 100%;
        margin: 0 0 1.5rem 0;
    }

    #column-main .article-body h3 {
        font-size: 1.15rem;
        margin: 2rem 0 1rem;
    }
}