﻿.feed_page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.feed_box {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.feed_box h2 {
    margin-bottom: 10px;
    font-size: 22px;
}

.feed_box p {
    line-height: 1.7;
    color: #555;
}

/* 섹션 타이틀 */
.section_title {
    font-size: 18px;
    margin-bottom: 15px;
}

/* 테이블 */
.rss_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.rss_table th,
.rss_table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.rss_table th {
    background: #f5f5f5;
    font-weight: bold;
}

/* 링크 */
.rss_table a {
    color: #333;
    text-decoration: none;
    word-break: break-all;
}

.rss_table a:hover {
    text-decoration: underline;
    color: #000;
}

/* 복사 버튼 */
.rss_table button {
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rss_table button:hover {
    transform: scale(1.2);
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .rss_table th,
    .rss_table td {
        font-size: 13px;
        padding: 8px;
    }
}