.post-body table td {border: none; padding: 15px; text-align: center; }
.post-body table th {border: none; padding: 15px; text-align: center; }
.post-body table {border: none;}
.post-body table thead th {color: white; text-align:center;}
.widget .post-body li {padding-left:15px; padding-top: 10px;}
/* Reset and Base Styles */
.melb-article {
font-family: ‘Segoe UI’, Roboto, ‘Helvetica Neue’, Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 1000px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
/* Typography */
.melb-article h1 {
font-size: 2.2rem;
color: #2c3e50;
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #3498db;
}
.melb-article h2 {
font-size: 1.8rem;
color: #2980b9;
margin: 2rem 0 1rem;
}
.melb-article p {
margin-bottom: 1.2rem;
font-size: 1.05rem;
}
/* Table Styles */
.melb-table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
overflow-x: auto;
display: block;
}
.melb-table th {
background-color: #3498db;
color: white;
font-weight: 600;
padding: 12px 15px;
text-align: left;
}
.melb-table td {
padding: 10px 15px;
border-bottom: 1px solid #e0e0e0;
}
.melb-table tr:nth-child(even) {
background-color: #f8f9fa;
}
.melb-table tr:hover {
background-color: #f1f8fe;
}
/* Highlight Box */
.melb-highlight {
background-color: #e3f2fd;
border-left: 4px solid #3498db;
padding: 1rem;
margin: 1.5rem 0;
border-radius: 0 4px 4px 0;
}
/* Responsive Design */
@media (max-width: 768px) {
.melb-article {
padding: 15px;
}
.melb-article h1 {
font-size: 1.8rem;
}
.melb-article h2 {
font-size: 1.5rem;
}
.melb-table {
font-size: 0.9rem;
}
}
/* Source List */
.melb-sources {
margin-top: 2rem;
font-size: 0.9rem;
color: #666;
}
.melb-sources h3 {
color: #7f8c8d;
margin-bottom: 0.5rem;
}
.melb-sources ul {
list-style-type: none;
padding-left: 0;
}
.melb-sources li {
margin-bottom: 0.5rem;
word-break: break-all;
}
.melb-sources a {
color: #3498db;
text-decoration: none;
}
.melb-sources a:hover {
text-decoration: underline;
}
.rp-container {
max-width: 1400px; /* Diperlebar untuk layar besar */
margin: 0 auto;
padding: 20px;
}
.rp-header {
text-align: center;
margin-bottom: 40px;
}
.rp-main-title {
font-size: 2.5rem;
font-weight: 600;
color: var(–rp-dark);
margin-bottom: 10px;
position: relative;
display: inline-block;
}
.rp-subtitle {
color: var(–rp-gray);
font-size: 1.1rem;
max-width: 600px;
margin: 20px auto 0;
line-height: 1.6;
}
.rp-cards-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Responsif penuh */
gap: 30px;
}
.rp-card {
background: #fff;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
display: flex;
flex-direction: column;
overflow: hidden;
transition: var(–rp-transition);
transform: translateY(0);
position: relative;
height: 100%; /* Tinggi penuh */
}
.rp-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}
.rp-card::before {
content: ”;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, var(–rp-primary), var(–rp-accent));
opacity: 0;
transition: var(–rp-transition);
}
.rp-card:hover::before {
opacity: 1;
}
.rp-card-img-container {
overflow: hidden;
position: relative;
height: 220px; /* Lebih tinggi */
}
.rp-card-img {
width: 100%;
height: 180%;
object-fit: cover;
transition: var(–rp-transition);
}
.rp-card:hover .rp-card-img {
transform: scale(1.05);
}
.rp-card-content {
padding: 25px;
flex: 1;
display: flex;
flex-direction: column;
}
.rp-card-title {
font-size: 1rem; /* Sedikit lebih besar */
font-weight: 600;
margin: 0 0 15px;
color: var(–rp-dark);
line-height: 1.4;
transition: var(–rp-transition);
text-align: center;
}
.rp-card:hover .rp-card-title {
color: var(–rp-primary);
}
.rp-read-more {
margin-top: auto;
text-align: center;
color: white;
background-color: #007bff;
border-radius:50px;
}
.rp-read-more-link {
display: inline-flex;
align-items: center;
text-decoration: none;
color: white;
font-weight: 500;
transition: var(–rp-transition);
padding: 8px 0;
font-size: 1.1rem;
}
.rp-read-more-link:hover {
color: var(–rp-secondary);
}
/* Layar sangat lebar (Desktop besar) */
@media (min-width: 1600px) {
.rp-cards-container {
grid-template-columns: repeat(3, 1fr); /* Tiga kolom dengan lebar sama */
}
.rp-card-img-container {
height: 250px; /* Lebih tinggi di layar lebar */
}
.rp-card-content {
padding: 30px;
}
.rp-card-title {
font-size: 1.5rem;
}
}
/* Tablet dan Desktop kecil */
@media (max-width: 1199px) {
.rp-cards-container {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.rp-card-img-container {
height: 200px;
}
}
/* Mobile */
@media (max-width: 768px) {
.rp-main-title {
font-size: 2rem;
}
.rp-cards-container {
grid-template-columns: 1fr;
max-width: 500px;
margin: 0 auto;
}
}
.rp-loader {
display: flex;
justify-content: center;
padding: 40px 0;
grid-column: 1 / -1; /* Loader memenuhi seluruh lebar */
}
.rp-loader-dot {
width: 12px;
height: 12px;
background: var(–rp-primary);
border-radius: 50%;
margin: 0 5px;
animation: rp-loader 1.2s infinite ease-in-out both;
}
.rp-loader-dot:nth-child(1) { animation-delay: -0.32s; }
.rp-loader-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes rp-loader {
0%, 80%, 100% { transform: scale(0); }
40% { transform: scale(1); }
}
.rp-no-posts {
text-align: center;
color: var(–rp-gray);
padding: 40px 0;
font-size: 1.2rem;
grid-column: 1 / -1; /* Memenuhi seluruh lebar */
}
Biaya Hidup Mahasiswa Internasional di Melbourne (2025)
Biaya hidup mahasiswa internasional di Melbourne umumnya tinggi. Menurut perhitungan resmi, total biaya hidup (termasuk akomodasi, makanan, transportasi, hiburan, dll.) rata-rata mencapai sekitar AU$24.500 per tahun. Sebagai gambaran:
Rincian Biaya:
- Akomodasi kampus: AU$110–280/minggu
- Akomodasi luar kampus: AU$185–440/minggu
- Makanan dan kebutuhan sehari-hari: AU$208–416/bulan
- Transportasi umum: ~AU$180/bulan
- Internet rumah: ~AU$79/bulan
- Asuransi kesehatan (OSHC): AU$478–500/tahun
- Hiburan dan gaya hidup: puluhan hingga ratusan dollar/bulan
Perbandingan Biaya di Kota Besar Australia
Biaya di Melbourne cukup tinggi dan sebanding dengan kota besar lain. Secara umum, Sydney dan Melbourne merupakan kota termahal, sedangkan Adelaide dan Canberra relatif lebih murah.
| Kategori | Melbourne | Sydney | Brisbane | Adelaide | Perth | Canberra |
|---|---|---|---|---|---|---|
| Akomodasi (per minggu) | Kampus: AU$110–280 Luar kampus: AU$185–440 |
Kampus: AU$383–685 Luar kampus: AU$350–700 |
Kampus: ~AU$339–752 Luar kampus: ~AU$225–469 |
Shared: AU$300–600 Kos: $150–300 |
Mungkin serupa Melbourne ($180–450) | Tersedia subsidi studi, ada gratis transport pelajar |
| Makanan & kebutuhan (per minggu) | ~AU$50–100 (sekitar AU$208–416/bulan) | ~AU$150–280 (AU$600–1.100/bulan) | ~AU$60–100 (estimasi) | ~AU$60–200 | ~AU$80–150 (estimasi) | ~AU$50–100 (estimasi) |
| Transportasi (per minggu) | ~AU$40–50 (pass bulanan ~AU$180) | ~AU$40 | ~AU$10–15 | ~AU$15 | ~AU$40–60 (estimasi) | Gratis bagi pelajar (MyWay) |
| OSHC (per tahun) | ~AU$500 (minimum single cover) | ~AU$500 (single cover) | ~AU$500 | ~AU$500 | ~AU$500 | ~AU$500 |
| Internet & HP (per bulan) | ~AU$79; HP ~$20 | Internet/HP AU$80–220 | Internet/HP ~AU$15–150 | Internet/HP ~AU$100 | Internet/HP ~AU$80–100 (estimasi) | Internet: gratis di kampus; HP ~$20–30 |
Catatan: Angka di atas bersifat perkiraan. OSHC (Overseas Student Health Cover) bersifat nasional, jadi biayanya serupa di semua kota (sekitar AU$478–500 per tahun untuk pelajar tunggal). Melbourne dan Sydney cenderung paling mahal terutama untuk akomodasi dan hiburan, sementara Adelaide dan Canberra lebih murah.
Pendapatan Kerja Paruh Waktu Mahasiswa (2025)
Mahasiswa internasional di Australia dapat bekerja paruh waktu hingga 48 jam per dua minggu selama masa kuliah. Banyak pekerjaan mahasiswa dibayar sekitar upah minimum nasional, yaitu ~AU$24,10 per jam (per Juli 2024).
Contupah per Jam di Sektor Populer:
- Barista/walter di restoran atau kafe: AU$24–35/jam
- Kasir/retail: AU$20–25/jam
- Pengantar (driver UberEats/DoorDash): AU$30/jam
- Petugas kebersihan: AU$25–30/jam
Jika bekerja misalnya 20 jam per minggu pada upah ~AU$25/jam, pendapatan kotor bisa sekitar AU$2.000 (sekitar AU$500/minggu).
function handleBlogPosts(json) {
const entries = json.feed.entry || [];
const container = document.getElementById(‘recent-posts’);
// Filter artikel hanya dengan tag “Bedah jurusan”
const filteredEntries = entries.filter(entry => {
if (!entry.category) return false;
return entry.category.some(cat =>
cat.term.toLowerCase() === “living cost”
);
});
if (filteredEntries.length === 0) {
container.innerHTML = ‘
Tidak ada postingan ditemukan untuk tag “Australia”.
‘;
return;
}
container.innerHTML = ”;
filteredEntries.slice(0, 3).forEach(entry => {
const title = entry.title.$t;
const link = entry.link.find(l => l.rel === ‘alternate’).href;
const content = entry.content.$t;
const parser = new DOMParser();
const doc = parser.parseFromString(content, ‘text/html’);
const img = doc.querySelector(‘img’);
const imgSrc = img ? img.src : ‘https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&h=400&q=80’;
const card = document.createElement(‘div’);
card.className = ‘rp-card’;
card.innerHTML = `
${title}
`;
container.appendChild(card);
});
}
(function() {
const script = document.createElement(‘script’);
script.src = ‘https://blog.starshipeducation.com/feeds/posts/default?alt=json-in-script&callback=handleBlogPosts’;
document.body.appendChild(script);
})();
Australia
Inggris
USA
Canada
Singapore
Malaysia