  .rss-subscribe-buttons {
    display: flex;
    flex-direction: row;
    gap: 2px;
    font-family: Arial, sans-serif;
    flex-wrap: nowrap; /* Prevents wrapping */
}

.rss-subscribe-buttons button {
    background-color: transparent; /* No background */
    color: #0073e6; /* Text color */
    padding: 3px 1px;
    border: 0px solid #0073e6; /* Border to match text color */
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1px;
    transition: color 0.3s ease, border-color 0.3s ease;
    font-weight: bold;
}

.rss-subscribe-buttons button img {
    width: 30px;
    height: 30px;
}

.rss-subscribe-buttons button:hover {
    color: #005bb5; /* Darker color for hover */
    border-color: #005bb5;
}

.rss-subscribe-buttons button:focus {
    outline: 2px solid #005bb5;
}
        .ifeed-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 0;
            list-style-type: none;
        }
        .ifeed-item{
            background-color: #fff;
            padding: 15px;
            border-radius: 5px;
            border: 1px solid #ddd;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        }
        .ifeed-link {
            font-size: 1.1em;
            font-weight: bold;
            color: var(--main);
            text-decoration: none;
            display: inline-block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .ifeed-link:hover {
            color: #003366;
        }
        .feed-description {
            color: #555;
        }
        @media (max-width: 900px) {
            .ifeed-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .ifeed-list {
                grid-template-columns: 1fr;
            }
        }

   
