/*  static/static_for_dynamic_content/members/test_before_register.css     */

.intro {
    margin-bottom: 1.5rem;
}

.cards {
    display: grid;
    gap: 1.5rem;
}

.feed-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1rem;
    background-color: #fafafa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.feed-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.feed-type {
    font-size: 0.95rem;
    color: #555;
}

.feed-link {
    width: 100%;
    padding: 0.5rem;
    font-size: 0.95rem;
    margin: 0.5rem 0;
    border: 1px solid #bbb;
    border-radius: 6px;
    background-color: #f9f9f9;
    color: #333;
}

.copy-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    background-color: #0073e6;
    color: white;
    transition: background-color 0.2s;
}

.copy-btn:hover,
.copy-btn:focus {
    background-color: #005bb5;
    outline: none;
}

.license-note {
    font-size: 0.85rem;
    margin-top: 0.75rem;
    color: #444;
}

.copy-status {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: #007700;
}

/* Accessibility helper */
.visually-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}




.feed-card h3 a {
    text-decoration: none;   /* no underline */
    color: #0073e6;          /* blue */
}

.feed-card h3 a:hover,
.feed-card h3 a:focus {
    text-decoration: none;   /* keep no underline on hover/focus */
    color: #005bb5;          /* darker blue on hover/focus */
}


